接口说明
查询已有的页面,包括在摇一摇页面出现的主标题、副标题、图片和点击进去的超链接。提供两种查询方式,可指定页面ID查询,也可批量拉取页面列表。
接口调用请求说明
http请求方式: POST(请使用https协议)https://api.weixin.qq.com/shakearound/page/search?access_token=ACCESS_TOKENPOST数据格式:json
POST数据例子:
需要查询指定页面时:
{
"type": 1,
"page_ids":[12345, 23456, 34567]
}
需要分页查询或者指定范围内的页面时:
{
"type": 2,
"begin": 0,
"count": 3
}
参数说明参数是否必须说明
access_token是调用接口凭证
type是查询类型。1: 查询页面id列表中的页面信息;2:分页查询所有页面信息
page_ids是指定页面的id列表;当type为1时,此项为必填
begin是页面列表的起始索引值;当type为2时,此项为必填
count是待查询的页面数量,不能超过50个;当type为2时,此项为必填
返回说明
正常时的返回JSON数据包示例:
{
"data": {
"pages": [
{
"comment": "just for test",
"description": "test",
"icon_url": "https://www.baidu.com/img/bd_logo1",
"page_id": 28840,
"page_url": "http://xw.qq.com/testapi1",
"title": "测试1"
},
{
"comment": "just for test",
"description": "test",
"icon_url": "https://www.baidu.com/img/bd_logo1",
"page_id": 28842,
"page_url": "http://xw.qq.com/testapi2",
"title": "测试2"
}
],
"total_count": 2
},
"errcode": 0,
"errmsg": "success."
}
参数说明参数说明
total_count商户名下的页面总数
page_id摇周边页面唯一ID
title在摇一摇页面展示的主标题,
description在摇一摇页面展示的副标题
icon_url在摇一摇页面展示的图片
page_url跳转链接
comment页面的备注信息