批量获取小程序信息
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>获取微信记账本数据_下一页</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://localhost:30001/BatchGetAppInfo</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;">gh_idlist</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;gh_idlist&quot;:&quot;gh_870576f3c6f9@app,gh_cd6a2f7aa6be@app&quot;
}
</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;count&quot;: &quot;2&quot;,
&quot;List&quot;: [
{
&quot;AppID&quot;: &quot;gh_870576f3c6f9@app&quot;,
&quot;SignNature&quot;: &quot;美团提供美食、外卖、打车、酒店、旅游、电影、休闲娱乐、KTV、机票、火车票、洗车养车、买菜等服务,以及消费评价、商家信息查询等功能&quot;,
&quot;VerifyInfo&quot;: &quot;24&quot;,
&quot;NickName&quot;: &quot;北京三快科技有限公司&quot;
},
{
&quot;AppID&quot;: &quot;gh_cd6a2f7aa6be@app&quot;,
&quot;SignNature&quot;: &quot;第一时间接收您的快递物流信息!丰巢提供寄快递、存包、洗护、家政、霸屏、商城等多元服务,满足您社区生活场景的多样化需求!&quot;,
&quot;VerifyInfo&quot;: &quot;24&quot;,
&quot;NickName&quot;: &quot;深圳市丰巢科技有限公司&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;">count</td>
<td style="text-align: left;">string</td>
<td>返回字典数量</td>
</tr>
<tr>
<td style="text-align: left;">AppID</td>
<td style="text-align: left;">string</td>
<td>appid</td>
</tr>
<tr>
<td style="text-align: left;">SignNature</td>
<td style="text-align: left;">string</td>
<td>签名信息</td>
</tr>
<tr>
<td style="text-align: left;">NickName</td>
<td style="text-align: left;">string</td>
<td>昵称</td>
</tr>
</tbody>
</table>