星球搜索接口 - 根据星球名称搜索星球
GET /groups
Parameters
参数 |
类型 |
是否必须 |
默认值 |
范围 |
说明 |
offset |
整型 |
可选 |
0 |
正整数 |
当前起始数 |
limit |
整型 |
可选 |
20 |
正整数 |
每页数量 |
name |
字符型 |
必须 |
- |
- |
星球名称 |
Response
参数 |
类型 |
说明 |
data.name |
整型 |
星球名称 |
data.image_url |
字符型 |
星球图片 |
data.introduction |
字符型 |
星球介绍 |
data.id |
整型 |
星球ID |
data.member_num |
整型 |
星球成员数 |
200
{
"data": [
{
"name": "星球2号",
"id": "2",
"image_url": "http:\/\/image.suxiazai.com\/img\/pic\/960\/359\/11680961633.jpg",
"introduction": "",
"member_num": "23"
},
...
],
"paging": {
first: "http://api.com/groups?offset=0&limit=5&name=nihao",
previous: "http://api.com/groups?offset=5&limit=5&name=nihao",
next: "http://api.com/groups?offset=10&limit=5&name=nihao",
final: "http://api.com/groups?offset=35&limit=5&name=nihao"
}
}
204 星球列表为空
400
{
"error": "获取星球列表失败"
}
帖子搜索接口 - 根据帖子标题搜索帖子
GET /posts
Parameters
参数 |
类型 |
是否必须 |
默认值 |
范围 |
说明 |
offset |
整型 |
可选 |
0 |
正整数 |
当前起始数 |
limit |
整型 |
可选 |
20 |
正整数 |
每页数量 |
name |
字符型 |
必须 |
- |
- |
帖子标题 |
Response
参数 |
类型 |
说明 |
id |
int |
帖子ID |
title |
string |
标题 |
content |
string |
内容 |
create_time |
date |
发帖时间 |
approved |
bool |
是否点赞(TRUE已点赞) |
approved_num |
int |
点赞数 |
collected |
bool |
是否收藏(TRUE已收藏) |
collected_num |
int |
收藏数 |
replied |
bool |
是否回复(TRUE已回复) |
replied_num |
int |
回复数 |
image_url |
array |
帖子图片预览3张url地址 |
author.name |
string |
发帖人 |
author.avatar_url |
string |
用户头像图片url |
author.id |
int |
发帖者id |
group.id |
int |
星球ID |
group.name |
string |
星球名称 |
200
{
"data": [
{
"id": "42",
"title": "1",
"content": "1",
"create_time": "2017-07-20T12:50:30.176Z",
"approved": TRUE,
"approved_num": "3",
"collected": TRUE,
"collected_num": "0",
"replied": TRUE,
"replied_num": "0",
"image_url": []
"author": {
"avatar_url": "http://7xlx4u.com1.z0.glb.clouddn.com/o_1aqt96pink2kvkhj13111r15tr7.jpg?imageView2/1/w/100/h/100",
"name": "汪汪汪",
"id": "2"
},
"group": {
"id": "1",
"name": "装备2014中队"
}
},
...
],
"paging": {
first: "http://api.com/post?offset=0&limit=5",
previous: "http://api.com/post?offset=5&limit=5",
next: "http://api.com/post?offset=10&limit=5",
final: "http://api.com/post?offset=35&limit=5"
}
}
204 帖子列表为空
400
{
"error": "获取帖子列表失败"
}