- 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/history/search
请求参数
Query 参数
keyword
string
关键字
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/history/search?keyword' \
--header 'Authorization: {{token}}'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
message
string
状态信息
data
array[object (ViewHistoryItem) {7}]
返回数据
id
string
插画id
name
string
插画名称
imgList
array[string]
插画列表
authorId
string
发布者id
authorName
string
发布者名称
authorAvatar
string
发布者头像
createdAt
string
什么时候浏览的作品
示例
{
"code": 200,
"message": "in adipisicing magna",
"data": [
{
"id": "29",
"name": "并多业家",
"imgList": [
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400",
"http://dummyimage.com/400x400"
],
"authorId": "8",
"authorName": "体常作",
"authorAvatar": "http://dummyimage.com/100x100",
"createdAt": "1992-06-17 03:46:03"
},
{
"id": "17",
"name": "根而何接一",
"imgList": [
"http://dummyimage.com/400x400"
],
"authorId": "19",
"authorName": "采图低所者",
"authorAvatar": "http://dummyimage.com/100x100",
"createdAt": "1971-09-06 05:01:13"
},
{
"id": "79",
"name": "明自连于界",
"imgList": [
"http://dummyimage.com/400x400"
],
"authorId": "3",
"authorName": "水从想般重采色",
"authorAvatar": "http://dummyimage.com/100x100",
"createdAt": "1973-08-02 06:58:26"
}
]
}
修改于 2024-04-11 03:08:44