- 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/recommend-user
请求参数
Query 参数
pageSize
string
一页的个数
示例值:
6
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/recommend-user?pageSize=6¤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": 48,
"message": "dolore Duis est",
"data": [
{
"id": "62",
"username": "锺超",
"avatar": "http://dummyimage.com/100x100",
"intro": "laborum dolore sit cillum",
"works": [
{
"id": "95",
"name": "识林众比看层今",
"imgList": [
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400"
],
"authorId": "79",
"authorName": "种合难",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": false
},
{
"id": "24",
"name": "达标接体打",
"imgList": [
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400"
],
"authorId": "99",
"authorName": "何性例属造外",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": true
},
{
"id": "41",
"name": "千党很较种拉转",
"imgList": [
"http://dummyimage.com/400x400"
],
"authorId": "74",
"authorName": "调结适深",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": false
}
],
"isFollowing": true
},
{
"id": "74",
"username": "秦芳",
"avatar": "http://dummyimage.com/100x100",
"intro": "commodo laboris",
"works": [
{
"id": "27",
"name": "当构史府",
"imgList": [
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400"
],
"authorId": "28",
"authorName": "传经百毛你之",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": false
},
{
"id": "48",
"name": "更矿什等观须",
"imgList": [
"http://dummyimage.com/400x400"
],
"authorId": "1",
"authorName": "便研节有",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": true
}
],
"isFollowing": true
},
{
"id": "29",
"username": "乔杰",
"avatar": "http://dummyimage.com/100x100",
"intro": "veniam",
"works": [
{
"id": "27",
"name": "资上九快产",
"imgList": [
"http://dummyimage.com/400x400"
],
"authorId": "82",
"authorName": "明社意而",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": true
},
{
"id": "65",
"name": "两容式",
"imgList": [
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400"
],
"authorId": "52",
"authorName": "活器府据",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": true
},
{
"id": "53",
"name": "物置热更主大达",
"imgList": [
"http://dummyimage.com/400x400"
],
"authorId": "82",
"authorName": "求真本据斯族",
"authorAvatar": "http://dummyimage.com/100x100",
"isLiked": true
}
],
"isFollowing": false
}
]
}
修改于 2024-05-23 06:36:24