- 用户接口
- 关注分组
- 发帖管理接口
- 分区接口
- 评论接口
- 评论回复接口
- 收藏接口
- 点赞接口
- 搜索及统计相关接口
- ws接口
获取文章收藏列表
测试中
GET
/collections/getlist
最后修改时间:2022-03-06 14:39:32
责任人:cosine_yu
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
示例代码
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://cosine.ren:8000/collections/getlist'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
result
array [object {7}]
必需
id
integer
必需
user_id
integer
必需
article_id
integer
必需
createdAt
string
必需
updatedAt
string
必需
userInfo
object
必需
articleInfo
object
必需
示例
{
"code": 0,
"message": "获取收藏数成功!",
"result": [
{
"id": 1,
"user_id": 1,
"article_id": 1,
"createdAt": "2022-03-02T04:30:47.000Z",
"updatedAt": "2022-03-02T04:30:47.000Z",
"userInfo": {
"avator": "/uploads/upload_69e540ce9e6369c272dbe5a20d993a69.jpg",
"user_name": "admin"
}
},
{
"id": 3,
"user_id": 1,
"article_id": 11,
"createdAt": "2022-03-02T04:32:21.000Z",
"updatedAt": "2022-03-02T04:32:21.000Z",
"userInfo": {
"avator": "/uploads/upload_69e540ce9e6369c272dbe5a20d993a69.jpg",
"user_name": "admin"
},
"articleInfo": {
"id": 11,
"user_id": 2,
"title": "角线构图认",
"summary": "加满直非路同边家候眼后每位布响置。",
"content": "向飞听山造亲争产阶术四得商相。根增解再必更相快术空质空查。非等然低龙期研新老确本步组。响石准果难示根能发派书质铁。",
"partition_id": 1,
"likes": 0,
"collections": 0,
"visits": 0,
"cover_url": "",
"createdAt": "2022-02-24T06:50:23.000Z",
"updatedAt": "2022-02-24T06:50:23.000Z"
}
},
{
"id": 4,
"user_id": 1,
"article_id": 3,
"createdAt": "2022-03-02T04:32:28.000Z",
"updatedAt": "2022-03-02T04:32:28.000Z",
"userInfo": {
"avator": "/uploads/upload_69e540ce9e6369c272dbe5a20d993a69.jpg",
"user_name": "admin"
},
"articleInfo": {
"id": 3,
"user_id": 1,
"title": "Snvw Njdn Qousdg Mpbz",
"summary": "8ai4",
"content": "ssssssssssssss",
"partition_id": 2,
"likes": 1,
"collections": 0,
"visits": 13,
"cover_url": "http://dnjej.cq/upyfnrkcv",
"createdAt": "2022-02-22T18:01:50.000Z",
"updatedAt": "2022-03-02T09:04:24.000Z"
}
},
{
"id": 5,
"user_id": 1,
"article_id": 2,
"createdAt": "2022-03-02T08:55:38.000Z",
"updatedAt": "2022-03-02T08:55:38.000Z",
"userInfo": {
"avator": "/uploads/upload_69e540ce9e6369c272dbe5a20d993a69.jpg",
"user_name": "admin"
},
"articleInfo": {
"id": 2,
"user_id": 1,
"title": "做料引",
"summary": "性始水代教术现斯比交前矿。",
"content": "向外路派装济历二二向由部体却具由思更。须石线增市由克义石离很会把以派问好者。八因济片影过图力节水合别。气任标则况所你十使则其受西间。京表从极音会将消战商件民验所。",
"partition_id": 1,
"likes": 1,
"collections": 0,
"visits": 0,
"cover_url": "",
"createdAt": "2022-02-22T18:01:50.000Z",
"updatedAt": "2022-02-25T08:14:48.000Z"
}
}
]
}
修改于 2022-03-06 14:39:32