- Users
- 发送邮箱验证码GET
- 用户注册POST
- 用户登录GET
- 获取用户详细信息GET
- 获取用户简要信息GET
- 修改用户基本信息POST
- 修改密码POST
- 修改邮箱POST
- 获取用户的收藏夹列表GET
- 分页获取用户的浏览记录GET
- 获取用户喜欢的标签列表GET
- 添加/移除用户喜欢的标签POST
- 关注/取关用户POST
- 分页获取正在关注的用户列表GET
- 获取用户正在关注的用户总数GET
- 分页获取用户的粉丝列表GET
- 获取用户的粉丝总数GET
- 获取用户已发布作品中所有携带的标签GET
- 分页获取用户发布的作品列表GET
- 获取用户发布的作品总数GET
- 分页获取用户喜欢的作品GET
- 获取用户喜欢的作品总数GET
- 分页搜索用户GET
- 获取搜索用户总数GET
- 收藏/取消收藏作品POST
- 喜欢/取消喜欢作品POST
- 无感刷新tokenGET
- 分页获取推荐用户列表GET
- Illustrations
- Comments
- History
- Labels
- Favorites
- Illustrators
- Tools
- ImgHandler
- Inits
分页获取用户的粉丝列表
开发中
GET
/api/user/fans
请求参数
Query 参数
pageSize
string
一页的个数
示例值:
20
current
string
当前的页数
示例值:
1
Header 参数
Authorization
string
可选
默认值:
{{token}}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:0721/api/user/fans?pageSize=20¤t=1' \
--header 'Authorization: {{token}}'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
message
string
状态信息
data
array[object (UserItem) {6}]
返回数据
id
string
用户id
username
string
用户名
avatar
string
用户头像
intro
string
用户简介
works
array[object (WorkNormalItem) {7}]
用户作品列表
isFollowing
boolean
是否正在关注
示例
{
"code": 200,
"message": "ex pariatur nisi occaecat cillum",
"data": [
{
"id": "83",
"username": "熊强",
"avatar": "http://dummyimage.com/100x100",
"intro": "Lorem",
"works": [
{
"id": "19",
"name": "采易取权外八",
"imgList": [
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400"
],
"authorId": "36",
"authorName": "关资空委克",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": false
},
{
"id": "26",
"name": "最解进经",
"imgList": [
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400"
],
"authorId": "96",
"authorName": "传实增她",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": true
}
],
"isFollowing": false
},
{
"id": "19",
"username": "范磊",
"avatar": "http://dummyimage.com/100x100",
"intro": "incididunt in cillum consequat magna",
"works": [
{
"id": "81",
"name": "我干圆",
"imgList": [
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400"
],
"authorId": "50",
"authorName": "正切向你",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": false
}
],
"isFollowing": true
},
{
"id": "73",
"username": "孔平",
"avatar": "http://dummyimage.com/100x100",
"intro": "laborum",
"works": [
{
"id": "1",
"name": "之各处月生",
"imgList": [
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400"
],
"authorId": "55",
"authorName": "车选热直又",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": false
}
],
"isFollowing": false
}
]
}
修改于 2024-05-16 06:38:04