星球列表-按成员数降序显示星球列表
GET /groups
Parameters
参数 |
类型 |
是否必须 |
默认值 |
范围 |
说明 |
offset |
整型 |
可选 |
0 |
正整数 |
当前起始数 |
limit |
整型 |
可选 |
20 |
正整数 |
每页数量 |
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",
previous: "http://api.com/groups?offset=5&limit=5",
next: "http://api.com/groups?offset=10&limit=5",
final: "http://api.com/groups?offset=35&limit=5"
}
}
204 星球列表为空
400
{
"error": "获取星球列表失败"
}