注册
  1. 广告类接口
  2. 广告位查询

1)由平台提供,开发者可查询某广告的信息

2)URL地址:https://public.zjuhe.cn/api/check_advertisement

3)请求参数

变量名

必填

类型

说明

code

String(128)

专属编码(例:Zj20190924125636,平台方提供开发者访问的标识码

APPID

String(128)

公众号ID(例:wx68727as88872t97),微信公众号专属标识

publicname

String(128)

公众号名称例:智聚合

4)举例如下:

$ date =[

  code => ‘Zj20190924125636,

  APPID => ‘wx68727as88872t97,

  publicname =>智聚合

];

$result = get_http_content('https://public.zjuhe.cn/api/check_advertisement', 'POST',$date);

5)返回结果

变量名

必填

类型

示例值


code

String(128)

专属编码(例:Zj20190924125636,平台方提供开发者访问的标识码

before

int(10)

支付前页面是否显示广告位:1(显示),0(不显示)


 success

int(10)

支付后页面是否显示广告位:1(显示),0(不显示)


img_path

String(255)

广告图片地址


url

String(255)

广告链接地址


publicname

String(128)

公众号名称


示例:

{"code":200,"msg":"查询成功","data":{"before":"0","success":"1","img_path":"https:\/\/selfsale.zjuhe.cn\/upload\/extension\/2da36d721882517e12fb5457f401dae9.png","url":"https:\/\/mp.weixin.qq.com\/s\/I88UJJtqspsDV4wDovAN9A","publicname":"智聚合","code":"Zj20190924125636"}}