群聊历史消息
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>群聊历史消息记录接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>message/group_chat_list</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>章节id</td>
</tr>
<tr>
<td style="text-align: left;">page</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>页码</td>
</tr>
<tr>
<td style="text-align: left;">pageSize</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>条数</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok&quot;,
&quot;data&quot;: {
&quot;member_count&quot;: 2, // 成员数(每次请求时会存在不同的值)
&quot;page&quot;: 4,
&quot;list&quot;: [
{
&quot;id&quot;: 34, // 消息id
&quot;user_id&quot;: 1, // 用户id
&quot;user_type&quot;: 1, // 用户身份;1=学生,2=老师
&quot;user_name&quot;: &quot;一宠三花迷(测试)&quot;,
&quot;msg_body&quot;: &quot;老师444&quot;,
&quot;create_time&quot;: 1719283994 // 发送时间
},
{
&quot;id&quot;: 35,
&quot;user_id&quot;: 1,
&quot;user_type&quot;: 1,
&quot;user_name&quot;: &quot;一宠三花迷(测试)&quot;,
&quot;msg_body&quot;: &quot;老师555&quot;,
&quot;create_time&quot;: 1719283997
},
{
&quot;id&quot;: 36,
&quot;user_id&quot;: 4,
&quot;user_type&quot;: 1,
&quot;user_name&quot;: &quot;xxx&quot;,
&quot;msg_body&quot;: &quot;013&quot;,
&quot;create_time&quot;: 1719284000
},
{
&quot;id&quot;: 37,
&quot;user_id&quot;: 4,
&quot;user_type&quot;: 1,
&quot;user_name&quot;: &quot;xxx&quot;,
&quot;msg_body&quot;: &quot;014&quot;,
&quot;create_time&quot;: 1719284002
},
{
&quot;id&quot;: 38,
&quot;user_id&quot;: 4,
&quot;user_type&quot;: 1,
&quot;user_name&quot;: &quot;xxx&quot;,
&quot;msg_body&quot;: &quot;015&quot;,
&quot;create_time&quot;: 1719284005
}
]
}
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>