群成员进群通知
<p><strong>简要描述:</strong></p>
<ul>
<li>群成员进群通知【需要自己开一个HTTP服务,DLL会主动请求你,并把消息内容推送到约定接口】</li>
</ul>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://127.0.0.1:9000/msg</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST</li>
</ul>
<p><strong>消息示例:</strong></p>
<pre><code class="language-json">{
&quot;type&quot;: 333, // 推送类型,固定为333
&quot;chat_room_id&quot;: &quot;xxx@chatroom&quot;, // 群ID
/* 进群者的信息列表 */
&quot;member_list&quot;:[
{
&quot;room_name&quot;:&quot;&quot;, // 群昵称
&quot;wx_id&quot;:&quot;wxid_xxx&quot; // 微信ID
},
...
],
&quot;msg&quot;: &quot;进群事件&quot;, // 提示内容
&quot;self_wx_id&quot;: &quot;wxid_xxxx&quot;, // 自己的微信ID
&quot;port&quot;: 8989 // DLL的端口号
}</code></pre>