关注列表
GET /api/v1/following
说明:查询关注列表
Header
Field
Type
Remarks
Authorization
String
Bearer ${unifiedAuthToken} ,其中unifiedAuthToken来自/api/v1/auth接口的返回
Request Parameters
Field
Type
Remarks
address
String
relationId or address
limit
int
每次查询数量,上限100
cursor
string
上一页返回的 cursor数据,cursor为空表示查询第一页
Request Example
Response Parameters
Field
Type
Remarks
code
String
返回码
desc
String
返回信息
data
FollowingResponse
数据
The FollowingResponse field consists of the following subfields:
Field
Type
Remarks
cursor
String
游标
list
List[Following]
follower列表
The Following field consists of the following subfields:
Field
Type
Remarks
relationId
String
用户id
name
String
用户姓名
avatar
String
用户头像
Response Body
Return Code
code
desc
Remarks
0
success
接口调用成功
Last updated