微信进程结束通知
<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;: 1000, // 推送类型,固定为1000
&quot;msg&quot;: &quot;进程结束&quot;, // 提示内容
&quot;wx_id&quot;: &quot;wxid_xxxx&quot;, // 微信ID
&quot;pid&quot;: 13136, // 进程ID
&quot;port&quot;: 8989 // DLL的端口号
}</code></pre>