群聊消息记录查询
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>群聊轮询接口(每5秒)</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>message/find_group_chat</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;">msg_time</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>会话详情的最后一条消息(第一次请求时)/上一次轮询结果的最后一条消息时间;未有消息体时传0</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;list&quot;: [
{
&quot;id&quot;: 33,
&quot;user_id&quot;: 1,
&quot;user_type&quot;: 3,
&quot;user_name&quot;: &quot;一宠三花迷(测试)&quot;,
&quot;msg_body&quot;: &quot;老师333&quot;,
&quot;create_time&quot;: 1719283991
},
{
&quot;id&quot;: 34,
&quot;user_id&quot;: 1,
&quot;user_type&quot;: 3,
&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;: 3,
&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;: 2,
&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;: 2,
&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;: 2,
&quot;user_name&quot;: &quot;xxx&quot;,
&quot;msg_body&quot;: &quot;015&quot;,
&quot;create_time&quot;: 1719284005
},
{
&quot;id&quot;: 39,
&quot;user_id&quot;: 4,
&quot;user_type&quot;: 2,
&quot;user_name&quot;: &quot;xxx&quot;,
&quot;msg_body&quot;: &quot;015&quot;,
&quot;create_time&quot;: 1719287588
}
]
}
}</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>