方法_批量获取群成员详细邀请信息
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>方法_批量获取群成员详细邀请信息,可以获取群成员是由谁邀请进来的</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://127.0.0.1:8084/api/wxOne/GetChatrooMmemberDetail</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">currentWxPort</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>微信端口</td>
</tr>
<tr>
<td style="text-align: left;">gid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>群ID</td>
</tr>
</tbody>
</table>
<h5>发送示例</h5>
<pre><code>{
&quot;currentWxPort&quot;:&quot;30002&quot;,
&quot;gid&quot;: &quot;12345@chatroom&quot;
}</code></pre>
<h5>返回示例</h5>
<pre><code> {
&quot;type&quot;: &quot;chatroom&quot;,
&quot;gid&quot;: &quot;18475851833@chatroom&quot;,
&quot;member_count&quot;: &quot;4&quot;,
&quot;master_wxid&quot;: &quot;wxid_abcsm7kmr62s22&quot;,
&quot;master_nickname&quot;: &quot;Visions&quot;,
&quot;chatroom_name&quot;: &quot;学习交流群&quot;,
&quot;member&quot;: [
{
&quot;wxid&quot;: &quot;wxid_abcsm7kmr62s22&quot;,
&quot;nickname&quot;: &quot;Visions&quot;,
&quot;user_head_big&quot;: &quot;https://wx.qlogo.cn/mmhead/ver_1/ZHDxayhgh4WVgPdj3x4wLJhiaZXDCz...&quot;,
&quot;user_head_small&quot;: &quot;https://wx.qlogo.cn/mmhead/ver_1/ZHDxayhgh4WVgPdj3x4wLJhiaZXDCzq6DicuG7dYHujMutJ...&quot;,
&quot;user_flag&quot;: &quot;9&quot;,
&quot;inviter_wxid&quot;: &quot;themid&quot;
},
{
&quot;wxid&quot;: &quot;wxid_71oa2aij4w2n22&quot;,
&quot;nickname&quot;: &quot;水流&quot;,
&quot;user_head_big&quot;: &quot;https://wx.qlogo.cn/mmhead/ver_1/gia6wFichwD...&quot;,
&quot;user_head_small&quot;: &quot;https://wx.qlogo.cn/mmhead/ver_1/gia6wFichwD6r0nj1...&quot;,
&quot;user_flag&quot;: &quot;1&quot;,
&quot;inviter_wxid&quot;: &quot;wxid_abcsm7kmr62s22&quot;
},
{
&quot;wxid&quot;: &quot;xaixin1314&quot;,
&quot;nickname&quot;: &quot;郭文海[加油]&quot;,
&quot;user_head_big&quot;: &quot;https://wx.qlogo.cn/mmhead/ver_1/R422pohCA...&quot;,
&quot;user_head_small&quot;: &quot;https://wx.qlogo.cn/mmhead/ver_1/R422...&quot;,
&quot;user_flag&quot;: &quot;1&quot;,
&quot;inviter_wxid&quot;: &quot;wxid_abcsm7kmr62s22&quot;
},
{
&quot;wxid&quot;: &quot;themid&quot;,
&quot;nickname&quot;: &quot;Hahaa&quot;,
&quot;user_head_big&quot;: &quot;https://wx.qlogo.cn/mmhead/ver_1/wvrTlK...&quot;,
&quot;user_head_small&quot;: &quot;https://wx.qlogo.cn/mmhead/ver_1/wvrT...&quot;,
&quot;user_flag&quot;: &quot;1&quot;,
&quot;inviter_wxid&quot;: &quot;wxid_abcsm7kmr62s22&quot;
}
]
}
</code></pre>