# 获取二维码
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/shop/funds/qrcode/get?access_token=xxxxxxxxx
# 请求参数示例
{
"qrcode_ticket":"05ba627d5b73b6f3ef0dcfc7"
}
# 回包示例
{
"errcode": 0,
"errmsg":"ok",
"qrcode_buf":"xxxxx"
}
# 请求参数说明
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
qrcode_ticket | string | 是 | 二维码ticket |
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
qrcode_buf | string | 二维码(base64编码二进制,需要base64解码) |
# 返回码
返回码 | 错误类型 |
---|---|
-1 | 系统异常 |
-2 | token太长 |
60220 | ticket已失效 |
60208 | 错误的ticket |