接口简介
- 本接口主要用于解析浏览器中的wap_token,返回wap_token的明文
本接口仅限用于wap_token解析出uid等信息,无数据库查询,接口性能高
接口请求说明
请求方式
POST https://站点接口域名/openapi/users/parse-wap-token
请求参数
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
wap_token | string | ✅ | cookies中的wap_token |
请求示例
curl -X POST 'https://站点接口域名/openapi/users/parse-wap-token' \
-H 'Authorization: Bearer 5d39164d1f281' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json'
-d 'wap_token=xxx..xxx'
接口响应说明
响应示例
{
"code": 0,
"text": "",
"data": {
"uid": 123,
"device": "xxxx",
"version": 0,
"user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
},
"time": 1545809695
}
响应结果说明
字段名 | 类型 | 说明 |
---|---|---|
uid | int | 用户uid |
device | string | 客户端设备号 |
version | string | 客户端版本号 |
user_agent | string | 用户所用的浏览器User-Agent |
接口简介
- 解析wap_token,并直接返回该用户的基础信息
本接口相当于解析wap_token+查询用户基本信息两个接口二合一
接口请求说明
请求方式
请求参数
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
wap_token | string | ✅ | cookies中的wap_token |
请求示例
curl -X POST 'https://站点接口域名/openapi/users/parse-user' \
-H 'Authorization: Bearer 5d39164d1f281' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json'
-d 'wap_token=xxx..xxx'
接口响应说明
响应示例
{
"code": 0,
"text": "",
"data": {
"id": 3,
"username": "qianfan1",
"signature": "个性签名",
"gender": 2,
"birthday": 787939200,
"avatar": "http://bbs1.qianfanyun.com/uc_server/avatar.php?uid=3&size=big",
"phone": "136xxxxxxxx",
},
"time": 1545809695
}
响应结果说明
字段名 | 类型 | 说明 |
---|---|---|
id | int | 用户uid |
username | string | 用户名 |
signature | string | 个性签名 |
gender | int | 性别:0保密 1男 2女 |
birthday | int | 生日 |
avatar | string | 头像 |
phone | string | 手机号 |
文档更新时间: 2021-11-26 10:02 作者:千帆云