微信数据接口


实时获取公众号搜索列表

<h5>简要描述</h5> <ul> <li>实时获取公众号搜索列表(支持分页)</li> <li><code>注意:接口有限频,每次调用需要间隔1秒</code></li> </ul> <h5>收费标准</h5> <ul> <li><code>按调用次数:5分钱/次</code></li> </ul> <h5>请求URL</h5> <ul> <li><code>http://data.wxrank.com/weixin/getsu?key=xxx&amp;amp;keyword=丁香医生</code></li> </ul> <h5>请求方式</h5> <ul> <li>GET / 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;">key</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>密钥</td> </tr> <tr> <td style="text-align: left;">keyword</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>搜索关键词</td> </tr> <tr> <td style="text-align: left;">page</td> <td style="text-align: left;">否</td> <td style="text-align: left;">int</td> <td>分页页码,默认1</td> </tr> </tbody> </table> <h5>返回示例</h5> <pre><code>{     &amp;quot;code&amp;quot;: 0,     &amp;quot;data&amp;quot;: [         {             &amp;quot;wx_id&amp;quot;: &amp;quot;DingXiangYiSheng&amp;quot;,             &amp;quot;wx_biz&amp;quot;: &amp;quot;MjA1ODMxMDQwMQ==&amp;quot;,             &amp;quot;wx_user&amp;quot;: &amp;quot;wxid_4302923029011&amp;quot;,             &amp;quot;wx_name&amp;quot;: &amp;quot;丁香医生&amp;quot;,             &amp;quot;signature&amp;quot;: &amp;quot;与一群有知识、有温度的医生,共同分享健康知识。 来丁香医生App/小程序,查疾病、查药品,线上问三甲名医。&amp;quot;,             &amp;quot;headImgUrl&amp;quot;: &amp;quot;http://wx.qlogo.cn/mmhead/Q3auHgzwzM6ZgyZRj3WvD0BTVSBiaaXQC4MBeaVRbIYNUibs1dk1ykPw/0&amp;quot;         },         {             &amp;quot;wx_id&amp;quot;: &amp;quot;JobmdCN&amp;quot;,             &amp;quot;wx_biz&amp;quot;: &amp;quot;MjM5MDA4MTk2MA==&amp;quot;,             &amp;quot;wx_user&amp;quot;: &amp;quot;gh_f4f286da622c&amp;quot;,             &amp;quot;wx_name&amp;quot;: &amp;quot;丁香人才&amp;quot;,             &amp;quot;signature&amp;quot;: &amp;quot;丁香人才是丁香园旗下专业医疗招聘平台,为您提供内科、外科、检验、康复、放射、急诊、中医等科室的公立医院、民营医院医生招聘信息。提供护士、护理、药师、教师、生物医药等招聘信息。更有简历优化、面试指导等干货,为您的求职之路提供完整的一站式服务&amp;quot;,             &amp;quot;headImgUrl&amp;quot;: &amp;quot;http://wx.qlogo.cn/mmhead/Q3auHgzwzM5iccQQibNlc8nG5LWwSV2LsYgCz6w4P6cm3cbIIXicFVRFw/0&amp;quot;         },         {             &amp;quot;wx_id&amp;quot;: &amp;quot;FZDingXiangClinics&amp;quot;,             &amp;quot;wx_biz&amp;quot;: &amp;quot;MzU5NTE0NTk3Mg==&amp;quot;,             &amp;quot;wx_user&amp;quot;: &amp;quot;gh_364424ef2196&amp;quot;,             &amp;quot;wx_name&amp;quot;: &amp;quot;福州丁香诊所&amp;quot;,             &amp;quot;signature&amp;quot;: &amp;quot;该公众号已停止服务,请新老客户前往新公众号“丁香云医疗”,我们将继续竭诚为您提供可靠、专业、用心的医疗服务。联系电话0591-88688520。&amp;quot;,             &amp;quot;headImgUrl&amp;quot;: &amp;quot;http://wx.qlogo.cn/mmhead/Q3auHgzwzM5n6Utialdx1Kym0OCpSdUkD33kQudU3shs8nMicEx6QqCw/0&amp;quot;         }     ],     &amp;quot;msg&amp;quot;: &amp;quot;剩余33994积分&amp;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;">wx_id</td> <td style="text-align: left;">string</td> <td>公众号ID(微信号)</td> </tr> <tr> <td style="text-align: left;">wx_biz</td> <td style="text-align: left;">string</td> <td>公众号biz</td> </tr> <tr> <td style="text-align: left;">wx_user</td> <td style="text-align: left;">string</td> <td>公众号原始ID</td> </tr> <tr> <td style="text-align: left;">wx_name</td> <td style="text-align: left;">string</td> <td>公众号名称</td> </tr> <tr> <td style="text-align: left;">signature</td> <td style="text-align: left;">string</td> <td>公众号简介</td> </tr> <tr> <td style="text-align: left;">headImgUrl</td> <td style="text-align: left;">string</td> <td>公众号头像链接</td> </tr> </tbody> </table> <h5>备注</h5> <p>&gt; <code>code 状态判断</code></p> <ul> <li>0:获取成功</li> <li>1000:积分不足</li> <li>1001:关键词不能为空</li> <li>1002:请求失败,请重试</li> <li>1003:请求超时,请重试</li> <li>1008:请求频繁,请稍候</li> <li>9999:QPS超过上限,请稍后再试(每秒不能超过10个)</li> </ul> <p>&gt; 提醒:code=0,扣积分</p>

页面列表

ITEM_HTML