消息列表*
# 消息列表
### 请求地址
```
http://site.wan911.com/api/chat/
```
### 请求参数
| 参数名 | 类型 | 说明 | 是否必填 |
|--------|-----|------|---------|
| active_class | string | 固定值:ChatMessagePage | 是 |
| active_method | string | 固定值:MessageList | 是 |
| uid | string | 当前登录人uid | 是 |
| token | string | 令牌 | 是 |
| keyword | string | 搜索内容 | 是 |
### 返回值
``` json
{
"IsSuccess":true,
"Message":"成功",
"ClientData":[
{
"gid":1111,//群聊id
"uid":1111,//好友id
"friendId":111,//好友关系id
"name":"xxx",//群聊名称or好友昵称
"img":"xxx",//头像
"type":1,//消息类型 1 群消息 2 好友消息 3 申请加好友消息 0 系统消息
"lastMsg":"", //最后一条消息内容
"createdTime":"yyyy-MM-dd HH:mm:ss",//最近一条消息发送的时间
"msgCount":1, //未读消息条数
}],
"Total":0
}
```