1、公众号数据

请求说明

接口地址: /api/open/api/wechat/searchwechat
请求方式:POST
Content-Type:application/json

{
  "pageIndex": 0,
  "pageSize": 0,
  "orderName": "string",
  "apid": 0,
  "acid": 0,
  "startTime": "string",
  "endTime": "string",
  "amout": 0,
  "originnal": 0,
  "keys": "string",
  "autwebid": "string"
}

输入参数说明

参数 类型 说明 必填项 缺省值
pageIndex int 分页索引
pageSize int 分页大小
orderName int 排序 1(发布时间)、2(阅读量)、3(评论数)
apid int 平台 ID
acid int 领域 ID
startTime int 起始时间
endTime int 结束时间
amout int 阅读量
originnal string 是否原创
keys string 关键字
autwebid string 作者 ID

输出参数说明

参数 类型 说明
hmctid int ID
apid int 平台Id
acid int 领域Id
hmctdocid string 文章Id
hmcttitle string 标题
hmctimage string 封面
hmcttype int 类型
hmctdate string 日期
hmctamout int 阅读量
hmctcommentnum string 评论量
hmctsource string 来源
autwebid string 作者Id
hmcturl string 链接
hmctoriginal int 是否原创

完整返回结果示例

{
  "code": "Success",
  "msg": "请求成功",
  "data": [
    {
      "hmctid": 10000011883142,
      "apid": 7,
      "acid": 14,
      "hmctdocid": null,
      "hmcttitle": "string",
      "hmctimage": "string",
      "hmcttype": 1,
      "hmctdate": "2018-01-12T10:09:59",
      "hmctamout": 501,
      "hmctcommentnum": 0,
      "hmctsource": "string",
      "autwebid": "797225",
      "hmcturl": "string",
      "hmctoriginal": null
    },
    ...
  ]
}