简要描述
获取千里眼二维码链接
请求URL
https://ggtools.thinkerx.com/open-api/orders/qrcode
请求方式
POST
参数
content_type: application/json
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| app_key | 是 | string | 平台签发key |
| timestamp | 是 | string | 时间戳,精确到秒 |
| order_id | 是 | int | 订单ID |
cURL
curl --location 'https://ggtools.thinkerx.com/open-api/orders/qrcode' \--header 'token: TDJ5bGtreGY1VENzK1pUWGNLaHd...' \
--header 'sign: 62c91867976b...' \
--header 'Content-Type: application/json' \
--data '{ "order_id": "12345", "app_key": "b0d566b0fac064a230ec", "timestamp": 1753091011}'返回示例
{
"status": 1,
"msg": "请求成功",
"data": {
"qrcode_url": "https://lbl.eggrj.com/wscupboard/?goid=1185680&v=4.0.0.6-7&token=xx"
}
}返回参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| status | int | 请求状态,1:成功,0:失败 |
| msg | string | 状态说明 |
| data | object | 数据 |
| qrcode_url | string | 二维码链接 |
