接口简介
- 修改用户信息(性别、个性签名、生日)
接口请求说明
请求方式
PUT https://站点接口域名/openapi/users/{user_id}
请求参数
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
gender | int | 性别 1:男 2:女 0:保密 | |
signature | string | 个性签名 (可以为空字符串) | |
birthday | string | 生日 支持的格式 (2019-08-08, 2019/08/08) |
可同时修改,也可部分修改,但至少需要一个
请求示例
curl -X PUT 'https://站点接口域名/openapi/users/32' \
-H 'Accept: application/json' \
-H 'authorization: Bearer 5d40e72b0f5ba' \
-H 'content-type: application/x-www-form-urlencoded' \
-d 'gender=0&signature=aah&birthday=2019%2F8%2F7'
接口响应说明
响应示例
{
"code": 0,
"text": "",
"data": {
"id": 32,
"username": "lalalala",
"signature": "aah",
"gender": 0,
"birthday": 1565020800,
"avatar": "http://bbs1.qianfanyun.com/uc_server/avatar.php?uid=32&size=big",
"phone": "15555970551"
},
"time": 1565253611
}
响应结果说明
字段名 | 类型 | 说明 |
---|---|---|
id | int | 用户uid |
username | string | 用户名 |
signature | string | 签名 |
gender | int | 性别 |
birthday | string | 生日 时间戳 |
avatar | string | 头像 |
phone | string | 电话 |
文档更新时间: 2021-11-26 10:02 作者:千帆云