接口简介
- 获取指定用户关注的人或者粉丝
接口请求说明
请求方式
GET https://站点接口域名/openapi/users/{user_id}/followers (粉丝)
GET https://站点接口域名/openapi/users/{user_id}/followings (关注的人)
请求参数
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
page | int | 分页 | |
per-page | int | 指定每页页数,默认为10 |
请求示例
# GET请求
curl -X GET 'https://站点接口域名/openapi/users/2/followers?page=1&per-page=10' \
-H 'Authorization: Bearer 5d39164d1f281' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json'
接口响应说明
响应示例
{
"code": 0,
"text": "",
"data": [
{
"id": 1,
"username": "admin",
"avatar": "http://bbs1.qianfanyun.com/uc_server/avatar.php?uid=1&size=big"
},
//...
],
"time": 1545809695
}
响应结果说明
字段名 | 类型 | 说明 |
---|---|---|
id | int | 用户uid |
username | string | 用户名 |
avatar | string | 用户头像 |
响应头中返回额外的分页基础数据:
- X-Pagination-Current-Page 指示当前返回的是第几页的数据
- X-Pagination-Per-Page 指示每页数据的条数
- X-Pagination-Page-Count 指示总页数
- X-Pagination-Total-Count 指示信息流总条数
文档更新时间: 2021-11-26 10:02 作者:漫漫