二维码生成
快速将URL或者文字生成二维码

接口地址: http://api.suxun.site/api/qrcode

返回格式: IMG,JSON 可选

请求方式: GET

请求示例: http://api.suxun.site/api/qrcode?text=内容&type=json

请求参数说明:

名称 必填 类型 说明
text string 输入内容
type string img,json可选,默认img

返回参数说明:

名称 类型 说明

返回示例:

{
	"code": "200",
	"url": "http://api.suxun.site/cache/1702270041.png"
}

错误码格式说明:

名称 类型 说明

代码示例:

HTML代码:
<img src="http://api.suxun.site/api/qrcode?text=内容" alt="胖大海API">

PHP代码:
<?php
$text = $_GET['text'];
$src = "http://api.suxun.site/api/qrcode?text=" . $text;
header('Content-type: image/png');
$res = imagecreatefromstring(file_get_contents($src));
imagepng($res);
imagedestroy($res);
?>

请求参数设置:

参数名称 参数值


{
	"code": "200",
	"url": "http://api.suxun.site/cache/1702270041.png"
}

错误码格式说明:

名称 类型 说明

代码示例:

HTML代码:
<img src="http://api.suxun.site/api/qrcode?text=内容" alt="胖大海API">

PHP代码:
<?php
$text = $_GET['text'];
$src = "http://api.suxun.site/api/qrcode?text=" . $text;
header('Content-type: image/png');
$res = imagecreatefromstring(file_get_contents($src));
imagepng($res);
imagedestroy($res);
?>