微同课APP


群聊消息查询

<p>[TOC]</p> <h5>简要描述</h5> <ul> <li>群聊消息轮询接口,每10秒请求一次</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;">section_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;">user_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> { &amp;quot;code&amp;quot;: 200, &amp;quot;msg&amp;quot;: &amp;quot;ok&amp;quot;, &amp;quot;data&amp;quot;: { &amp;quot;is_banned&amp;quot;: 0, // 是否禁言,1=是,0=否 &amp;quot;list&amp;quot;: [ // 为空代表不存在消息;可能包含自己发送的或已显示的消息,需要匹配筛选;返回顺序为时间正序 { &amp;quot;id&amp;quot;: 5, // 消息id &amp;quot;user_id&amp;quot;: 2, // 发送者id &amp;quot;user_type&amp;quot;: 1, // 用户身份;1=学生,2=老师 &amp;quot;user_name&amp;quot;: &amp;quot;哲学家233&amp;quot;, // 用户昵称 &amp;quot;msg_body&amp;quot;: &amp;quot;哈哈哈3&amp;quot;, // 消息体 &amp;quot;create_time&amp;quot;: 1718873227 // 发送时间 }, { &amp;quot;id&amp;quot;: 6, &amp;quot;user_id&amp;quot;: 2, &amp;quot;user_type&amp;quot;: 1, &amp;quot;user_name&amp;quot;: &amp;quot;哲学家233&amp;quot;, &amp;quot;msg_body&amp;quot;: &amp;quot;哈哈哈4&amp;quot;, &amp;quot;create_time&amp;quot;: 1718873230 } ] } }</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>

页面列表

ITEM_HTML