调用该接口,拉取用户关注的所有作者列表。
请求结构 | 说明 |
---|---|
请求域名 | stream-api.feedcoopapi.com【建议】 mercury.snssdk.com【废弃】 |
请求地址 | /user/following/list/ |
请求协议 | HTTP/HTTPS |
请求方式 | GET |
参数类型 | application/x-www-form-urlencoded |
参数 | 描述 | 类型 | 是否必填 | 说明 |
---|---|---|---|---|
count | 指定返回的条数 | int | 是 | 用于指定返回多少条数据,最多支持20条; |
cursor | 索引 | int | 否 | 首次传0,翻页(load_more)的时候传上一次火山引擎返回的cursor; |
biz_log | 保留字段 | String | 否 | 目前为保留字段,待后续业务拓展 |
参数 | 描述 | 类型 | 说明 |
---|---|---|---|
ret | 错误码 | long | |
req_id | 本次请求标识 | String | 惟一标识本次请求,火山引擎侧使用该字段进行具体问题追踪和排查 |
msg | 本次请求是否成功 | String | success:成功 |
cursor | 索引 | int | 当has_more为true时,cursor需要作为翻页请求的参数 |
has_more | 是否加载更多 | boolean | true:是,加载更多; false:否,已全部加载完毕,没有更多 |
total | 已关注作者总数 | int | 表示用户总共关注了多少个作者 |
data | 已关注作者列表 | List |
curl --location --request GET 'https://stream-api.feedcoopapi.com/user/following/list/?access_token=xxx×tamp=1662690328&signature=xxx&nonce=123&partner=xxx&count=20'
成功
{ "msg": "success", "ret": 0, "req_id": "2022082521444401021008607703CE0D52", "data": [ { "info": { "avatar_url": "xxx", "description": "xxx", "user_verified": true, "verified_content": "xxx", "home_page": "xxx", "name": "xxx", "user_id": xxx, ... }, "relation": { "is_following": 1, "followings_count": 0, "followers_count": 111197, "follow_time": 1661425692, "update_article_time": 0 } }, ... ], "total": 6, "cursor": 20 }