获取青莲云账号体系用户id
通过调用接口获取青莲云账号体系用户的id。
请求URL:
curl"https://api.qinglianyun.com/open/oauth/v1/get/userid"
-d"qlaccesstoken=xxx"
返回的 JSON 数据:
{
"code": 0,
"msg":"xxxxxxxxxxx",
"data": "{\"qluid\":\"xxx\"}"
}
请求参数:
参数名 | 类型 | 说明 | 备注 | 必需 |
---|---|---|---|---|
qlaccesstoken | String | 青莲云用户账号的token | 青莲云每一个用户账号都是唯一的 | 是 |
返回参数:
参数名 | 类型 | 说明 | 备注 | 必需 |
---|---|---|---|---|
code | Int | 返回码 | 查看Api返回码 | 是 |
msg | String | 返回信息 | 如果code为0,则msg为空;如果code不为0, 则msg返回的为相关错误信息 |
是 |
data | String | 返回对象字符串 | 数据格式如下 | 是 |
qluid | String | 青莲云用户的id | 是 |