# 动态收藏
# 收藏
POST api/v2/feeds/:feed/collections
1
Response
Status: 201 Created
1
{
"message": [
"收藏成功"
]
}
1
2
3
4
5
2
3
4
5
# 取消收藏
DELETE api/v2/feeds/:feed/uncollect
1
Response
Status: 204 No Centent
1
# 收藏列表
GET api/v2/feeds/collections
1
Parameters
名称 | 类型 | 描述 |
---|---|---|
limit | Integer | 可选,默认值 20 ,获取条数 |
offset | Integer | 可选,偏移量,用于翻页,传入已请求过的数据总数 |
user | Integer | type = users 时可选,默认值为当前用户id |
列表为倒序
Response
Status: 200 OK
1
[
{...} // 数据参考动态单条内容
]
1
2
3
2
3