群聊成员

# 群聊成员 ### 请求地址 ``` http://site.wan911.com/api/chat/ ``` ### 请求参数 | 参数名 | 类型 | 说明 | 是否必填 | |--------|-----|------|---------| | active_class | string | 固定值:ChatGroupPage | 是 | | active_method | string | 固定值:GroupMember | 是 | | token | string | 令牌 | 是 | | uid | string | 当前登录人uid | 是 | | gid| int | 群聊id也是游戏id | 是 | | pageIndex | int | 页码 | 是,默认1 | | pageSize | int | 条数 | 否,默认20条 | ### 返回值 ``` json { "IsSuccess":true, "Message":"成功", "ClientData":[ { "xy_uid":100,//用户编号 "xy_uname":"xxx",//用户账号 "xy_nickname":"xxx",//昵称 "xy_userface":"xxx",//头像 "createdTime":"yyyy-MM-dd HH:mm:ss",//加入时间 }], "Total":0 } ```