WeChatApi


聊天消息

<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">{ &amp;quot;type&amp;quot;: 100, // 推送类型,固定为100 &amp;quot;msg_type&amp;quot;: 1, // 消息类型 &amp;quot;local_id&amp;quot;: &amp;quot;1381&amp;quot;, // 消息位置ID &amp;quot;msg_id&amp;quot;: &amp;quot;3921711251800000000&amp;quot;, // 消息ID【自己发送的消息时为0】 &amp;quot;wx_id&amp;quot;: &amp;quot;wxid_xxxx&amp;quot;, // 微信ID, &amp;quot;at_list&amp;quot;: [&amp;quot;wxid_xxx1&amp;quot;, &amp;quot;wxid_xxx2&amp;quot;], // 群消息艾特人列表,艾特所有人就是【notify@all】 &amp;quot;content&amp;quot;: &amp;quot;你好鸭&amp;quot;, // 消息内容 &amp;quot;sender&amp;quot;: &amp;quot;wxid_xxxx&amp;quot;, // 如果是群消息,该参数为发送者的微信ID,否则为空 &amp;quot;file_path&amp;quot;: &amp;quot;E:\\微信缓存\\WeChat Files\\xxxxx&amp;quot;, // 消息文件路径 &amp;quot;time_stamp&amp;quot;: 1682944354, // 发送时间 &amp;quot;is_self_msg&amp;quot;: 1, // 是否是自己发送的消息 0:别人发来的 1:自己发的 &amp;quot;is_pc_msg&amp;quot;: 1, // 是否是PC端发送的消息(仅用于判断自己发送的消息,别人发送的都是0) 0:否 1:是 &amp;quot;self_wx_id&amp;quot;: &amp;quot;wxid_xxxx&amp;quot;, // 自己的微信ID &amp;quot;port&amp;quot;: 8989 // DLL的端口号 }</code></pre> <p><strong>消息类型说明【msg_type】:</strong></p> <table> <thead> <tr> <th style="text-align: center;">消息类型</th> <th style="text-align: center;">说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: center;">1</td> <td style="text-align: center;">文本消息</td> </tr> <tr> <td style="text-align: center;">3</td> <td style="text-align: center;">图片消息</td> </tr> <tr> <td style="text-align: center;">34</td> <td style="text-align: center;">语音消息</td> </tr> <tr> <td style="text-align: center;">37</td> <td style="text-align: center;">好友请求</td> </tr> <tr> <td style="text-align: center;">40</td> <td style="text-align: center;">可能是好友消息</td> </tr> <tr> <td style="text-align: center;">42</td> <td style="text-align: center;">个人名片</td> </tr> <tr> <td style="text-align: center;">43</td> <td style="text-align: center;">视频消息</td> </tr> <tr> <td style="text-align: center;">47</td> <td style="text-align: center;">自定义表情包</td> </tr> <tr> <td style="text-align: center;">48</td> <td style="text-align: center;">位置消息</td> </tr> <tr> <td style="text-align: center;">49</td> <td style="text-align: center;">共享实时位置、等xml消息</td> </tr> <tr> <td style="text-align: center;">50</td> <td style="text-align: center;">未知消息</td> </tr> <tr> <td style="text-align: center;">51</td> <td style="text-align: center;">微信初始化消息</td> </tr> <tr> <td style="text-align: center;">52</td> <td style="text-align: center;">未知消息</td> </tr> <tr> <td style="text-align: center;">53</td> <td style="text-align: center;">未知消息</td> </tr> <tr> <td style="text-align: center;">62</td> <td style="text-align: center;">小视频消息</td> </tr> <tr> <td style="text-align: center;">9999</td> <td style="text-align: center;">未知消息</td> </tr> <tr> <td style="text-align: center;">10002</td> <td style="text-align: center;">提现消息</td> </tr> <tr> <td style="text-align: center;">10000</td> <td style="text-align: center;">系统消息</td> </tr> </tbody> </table>

页面列表

ITEM_HTML