网络查询陌生人信息
<p><strong>简要描述:</strong></p>
<ul>
<li>网络查询陌生人信息</li>
</ul>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://127.0.0.1:8989/api</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST</li>
</ul>
<p><strong>JSON参数:</strong></p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">是否必选</th>
<th style="text-align: left;">类型</th>
<th style="text-align: left;">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">type</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td style="text-align: left;">消息类型</td>
</tr>
<tr>
<td style="text-align: left;">key</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">手机号/邮箱号</td>
</tr>
</tbody>
</table>
<p><strong>发送示例:</strong></p>
<pre><code class="language-json">{
&quot;type&quot;: 4008,
&quot;key&quot;: &quot;13800000000&quot;
}</code></pre>
<p><strong>返回示例:</strong></p>
<pre><code class="language-json">{
&quot;data&quot;: {
&quot;list&quot;: [
{
&quot;avatar_url&quot;: &quot;https://wework.qpic.cn/wwpic3az/xxx/0&quot;, //头像地址
&quot;corp_id&quot;: &quot;197xxx&quot;, //公司ID
&quot;item_type&quot;: 1, //微信类型 1:企微 2:个微
&quot;nick_name&quot;: &quot;**君&quot;, //昵称
&quot;openid_or_ticket&quot;: &quot;149Fxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&quot;, //添加为好友时需要用到
&quot;sex&quot;: &quot;1&quot;, //性别 0:未设置 1:男 2:女
&quot;user_id&quot;: &quot;312xxx&quot; //用户ID
},
{
&quot;avatar_url&quot;: &quot;http://wx.qlogo.cn/mmhead/xxx/0&quot;, //头像地址
&quot;corp_id&quot;: &quot;&quot;, //公司ID
&quot;item_type&quot;: 2, //微信类型 1:企微 2:个微
&quot;nick_name&quot;: &quot;三水君&quot;, //昵称
&quot;openid_or_ticket&quot;: &quot;orFxxxxxxxxxxxxxxxxx&quot;, //添加为好友时需要用到
&quot;sex&quot;: &quot;1&quot;, //性别 0:未设置 1:男 2:女
&quot;user_id&quot;: &quot;788xxx&quot; //用户ID
}
]
},
&quot;errmsg&quot;: &quot;OK&quot;,
&quot;errno&quot;: 0
}</code></pre>