说明 / 示例
## 获取消息内容
### 请求地址
``` url
/api/action/
```
### 请求参数
| 参数名称 | 默认值 | 说明 |
| -------- | ----------- | ------ |
| \_handle | IMPage | |
| \_method | GetIMContent | |
| uid | | id |
| token | | cookie |
| xy_id | |好友/群聊主键|
| xy_type | | 0好友 1群聊|
| page | | 页码|
| size | | 每页大小|
### 请求响应
``` json
{
"code":1,
"msg":null,
"data":[
{
"xy_send_id":"发送人ID(int)",
"xy_send_nick":"发送人昵称",
“xy_send_img”:"发送人头像"
"xy_send_msg":"发送消息内容",
"xy_send_time":"发送消息时间"
}
]
}
```