获取用户收藏帖子的接口
GET /users/:id/collections
Head
参数 |
类型 |
是否必须 |
说明 |
Access-Token |
字符型 |
必须 |
用户token |
Url-Parameters
参数 |
类型 |
是否必须 |
范围 |
说明 |
id |
整型 |
必须 |
正整数 |
用户ID |
Parameters
参数 |
类型 |
是否必须 |
默认值 |
范围 |
说明 |
offset |
整型 |
可选 |
0 |
正整数 |
当前起始数 |
limit |
整型 |
可选 |
20 |
正整数 |
每页数量 |
Response
返回字段 |
类型 |
说明 |
create_time |
string |
收藏时间 |
id |
int |
帖子ID |
title |
string |
帖子标题 |
content |
string |
帖子内容 |
delete |
bool |
帖子是否被删除 |
image_url |
string |
帖子图片 |
group |
|
|
group.id |
int |
帖子所在星球id |
group.name |
string |
帖子所在星球名称 |
200
{
"data": [
{
"id": "346",
"title": "我好烦那个人啊",
"content": "淡定吗,无论如何 保持整洁",
"create_time": "2017-07-28T11:32:19Z",
"image_url": [],
"delete": false,
"group": {
"id": "1",
"name": "000000000g"
}
}
],
"paging": {
"first": "localhost:800/users/58/collections?limit=20&offset=0",
"previous": "localhost:800/users/58/collections?limit=20&offset=0",
"next": "localhost:800/users/58/collections?limit=20&offset=0",
"final": "localhost:800/users/58/collections?limit=20&offset=0"
}
}