- wmi_api
- 开发指南
- 账号接口
- 消息接口
- 好友接口
- 标签接口
- 群接口
- 朋友圈接口
- 消息推送
检测扫码结果
开发中
POST
/v1/account/getscanuser
请求参数
Header 参数
token
string
可选
Body 参数application/json
uuid
string
设备ID
proxyip
string
代理IP
proxyport
integer
代理http端口
proxysocksport
integer
代理sock5端口
proxyusername
string
代理验证户名
proxypassword
string
代理验证密码
示例
{
"uuid": ""
}
返回响应
🟢200成功
application/json
Body
code
integer
状态
data
object
必需
uuid
string
设备ID
state
integer
登录状态
expiredtime
integer
二维码过期时间
userinfo
object
扫码用户信息
text
string
信息
rowcount
integer
必需
示例
{
"code": 0,
"data": {
"uuid": "string",
"state": 0,
"expiredtime": 0,
"userinfo": {
"wxid": "string",
"nickname": "string",
"headurl": "string"
}
},
"text": "string",
"rowcount": 0
}