Appearance
获取用户参与的圈子
| 拥有此API的权限集 |
|---|
| 圈子管理-查询 |
请求方式及url
- 请求方式:
POST - 请求头:
Content-Type:application/json - 接口地址:
https://api.xiaoe-tech.com/xe.community.user.list/1.0.0 - 频率限制:
10秒500次
接口调试
请求参数
响应结果
暂无响应数据
请求参数
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| access_token | 是 | string | 专属token |
| user_id | 否 | string | 用户id |
| page_index | 是 | string | 当前页(起始值:1) |
| page_size | 是 | string | 每页数据条数 (默认10) |
请求示例
{
"access_token" : "xe_xxxxx",
"user_id": "xxxxxxxxx",
"page_index": 1,
"page_size": 10
}返回参数
|参数名|类型|说明| |:---- |:---|:----- |----- | |app_id |string |店铺id | |community_id |string | 圈子id | |user_id |string | 用户id | |title |string | 圈子名称 | |describe |string | 圈子描述 | |img_url |string | 圈子配图url | |payment_type |string | 付费类型:1-免费、2-单笔、3-付费产品包 | |piece_price |string | payment_type为2时,单笔价格(分);payment_type为3时,专栏价格(分)| |community_state |string | 圈子状态0:显示 1隐藏 | |nick_name |string | 用户圈子昵称 | |wx_avatar |string | 压缩后的头像 | |type |string | 用户类型(0-普通用户,1-圈主) | |created_at |string | 圈子创建时间 | |join_at |string | 参加圈子时间 |
返回示例
{
"code":0,
"msg":"",
"data":{
"total":30,
"list":[
{
"community_id":"c_5911347e505e8_bBVI9Y3L9863",
"nick_name":"dt",
"wx_avatar":"https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83erPuFLRjCicvRUlMJCWZsjyGdRnCqQnVqaJ21eRwWJr9Rc7S6goxRuF2TKZNfOKfe7OhI49mHcN7Wg/0",
"type":0,
"join_at":"2017-05-09 17:02:58",
"id":"c_5911347e505e8_bBVI9Y3L9863",
"app_id":"apppcHqlTPT3482",
"title":"小晓鹅",
"describe":"测试用",
"img_url":"http://wechatapppro-1252524126.file.myqcloud.com/image/338d2b1eccd75f64cdb223d25a508f21.jpg",
"payment_type":2,
"piece_price":10,
"community_state":1,
"created_at":"2017-05-09 11:16:14"
}
]
}
}