im聊天室如何知道聊天室成员状态,接口文档字段文档不明确(mtime,ctime,room_ctime)
获取聊天室成员列表
GET /v1/chatroom/{room_id}/members?start={start}&count={count}
Request Params
- room_id 聊天室ID。
Example Response
- username 用户名
- ctime 创建时间
- flag 禁言标记
HTTP/1.1 200 OK
Content-Type: application/json
{
"total": 2,
"users": [
{
"username": "13538013231",
"flag": 0,
"room_ctime": "2017-11-17 08:57:54",
"mtime": "2017-10-30 17:24:17",
"ctime": "2017-10-30 17:24:17"
},
{
"username": "xia_12",
"flag": 0,
"room_ctime": "2017-11-16 19:13:07",
"mtime": "2017-02-08 17:56:04",
"ctime": "2017-02-08 17:56:04"
}
],
"count": 2,
"start": 0
}