批量获取联系人简明信息
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>批量获取联系人简明信息(一次最多传100个id)</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://localhost:30001/BatchGetContactBriefInfo</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST</li>
</ul>
<h5>发送参数</h5>
<pre><code>{
&quot;wxidlist&quot;:&quot;themid,weixin,wxid_38zehz4m798e76&quot;
}</code></pre>
<h5>发送参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名(好友)</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">wxidlist</td>
<td style="text-align: left;">string</td>
<td>微信ID清单</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;count&quot;: &quot;3&quot;,
&quot;info&quot;: [
{
&quot;wxid&quot;: &quot;themid&quot;,
&quot;nickname&quot;: &quot;illusion water&quot;,
&quot;markname&quot;: &quot;&quot;,
&quot;country&quot;: &quot;Sha..&quot;,
&quot;city&quot;: &quot;&quot;,
&quot;bighead&quot;: &quot;http://wx.qlogo.cn/mmhead/ver_1/ibKu...&quot;,
&quot;smallhead&quot;: &quot;http://wx.qlogo.cn/mmhead/ver_1/ibKu..&quot;
},
{
&quot;wxid&quot;: &quot;weixin&quot;,
&quot;nickname&quot;: &quot;微信团队&quot;,
&quot;markname&quot;: &quot;&quot;,
&quot;country&quot;: &quot;&quot;,
&quot;city&quot;: &quot;&quot;,
&quot;bighead&quot;: &quot;http://wx.qlogo.cn/mmhead/Q3auHgzwzM6H8bJKHKyGY2mk0ljLfodkWnrRbXLn3P11f68cg0ePxA/0&quot;,
&quot;smallhead&quot;: &quot;http://wx.qlogo.cn/mmhead/Q3auHgzwzM6H8bJKHKyGY2mk0ljLfodkWnrRbXLn3P11f68cg0ePxA/132&quot;
},
{
&quot;wxid&quot;: &quot;wxid_38zehz4m798e76&quot;,
&quot;nickname&quot;: &quot;幻想&quot;,
&quot;markname&quot;: &quot;&quot;,
&quot;country&quot;: &quot;&quot;,
&quot;city&quot;: &quot;&quot;,
&quot;bighead&quot;: &quot;http://wx.qlogo.cn/mmhead/ver_1/ANlGibS..&quot;,
&quot;smallhead&quot;: &quot;http://wx.qlogo.cn/mmhead/ver_1/ANl..&quot;
}
]
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名(好友)</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">wxid</td>
<td style="text-align: left;">string</td>
<td>微信ID</td>
</tr>
<tr>
<td style="text-align: left;">nickname</td>
<td style="text-align: left;">string</td>
<td>昵称</td>
</tr>
<tr>
<td style="text-align: left;">markname</td>
<td style="text-align: left;">string</td>
<td>备注名称</td>
</tr>
<tr>
<td style="text-align: left;">country</td>
<td style="text-align: left;">string</td>
<td>备注名称</td>
</tr>
<tr>
<td style="text-align: left;">province</td>
<td style="text-align: left;">string</td>
<td>备注名称</td>
</tr>
<tr>
<td style="text-align: left;">city</td>
<td style="text-align: left;">string</td>
<td>城市</td>
</tr>
<tr>
<td style="text-align: left;">bighead</td>
<td style="text-align: left;">string</td>
<td>大头像URL地址</td>
</tr>
<tr>
<td style="text-align: left;">smallhead</td>
<td style="text-align: left;">string</td>
<td>小头像URL地址</td>
</tr>
</tbody>
</table>