接口使用场景等说明:帮助推客批量创建推广位,推广位分为两种类型:
3:私域推广位,上限5000个,不在联盟后台展示,无对应 PID;
4:联盟后台推广位,上限500个,在联盟后台展示,自动生成PID,可用于内容平台推广。
业务参数key需要由推客进入“联盟官网-我的推广-我的工具-我的API”中获取,有效期365天。
关于京东推广位PID,相关政策参考http://www.veapi.cn/taokelianmeng/476.html
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/jd/createpid | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
unionId | Number | 是 | 10000618 | 需要创建的目标联盟id |
key | String | 是 | 无 | 推客unionid对应的授权Key,在“联盟官网-我的推广-我的工具-我的API”中查询,授权Key具有唯一性,有效期365天,删除或创建新的授权Key后原有的授权Key自动失效 |
unionType | Number | 是 | 3 | 传值3-表示私域推广位,上限5000个,不在联盟后台展示,无对应PID;4:联盟后台推广位,上限500个,会在推客联盟后台看到,自动生成对应PID,可用于内容平台推广 |
type | Number | 是 | 1 | 站点类型: 1.网站推广位2.APP推广位3.导购媒体推广位4.聊天工具推广位 |
spaceNameList | String | 是 | pid名称1,pid名称2 | 推广位名称集合,英文,分割;上限50 |
siteId | Number | 是 | 61800001 | 站点ID:网站的ID/app ID/snsID 。当type非4(聊天工具)时,siteId是 |
GET/POST http://api.veapi.cn/jd/createpid?vekey=xxx&unionId=xxx&unionType=4&key=ece1b6ab1c8b27a738757bac144b52defe3346604e5f47a25132578be8101ea45b41f24d5ea6a829&type=1&siteId=1487944623&spaceNameList=新PID创建
$api="http://api.veapi.cn/jd/createpid?vekey=xxx&unionId=xxx&unionType=4&key=ece1b6ab1c8b27a738757bac144b52defe3346604e5f47a25132578be8101ea45b41f24d5ea6a829&type=1&siteId=1487944623&spaceNameList=新PID创建"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api); //curl_setopt($ch, CURLOPT_POST, true); //POST方式时启用 //curl_setopt($ch, CURLOPT_POSTFIELDS, $postData ); //POST方式时传参 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true ); //返回数据流,不直接输出 curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); //使用gzip压缩传输让访问更快 curl_setopt($ch, CURLOPT_TIMEOUT, 6); //允许执行的最长秒数。这里设定6S curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); $result = curl_exec($ch); $info = curl_getinfo($ch); curl_close($ch); echo $result; //返回值
import cn.hutool.http.HttpResponse; import cn.hutool.http.HttpRequest; public class testGetParam { public static void main(String[] args) { // API网址 String url = "http://api.veapi.cn/jd/createpid?vekey=xxx&unionId=xxx&unionType=4&key=ece1b6ab1c8b27a738757bac144b52defe3346604e5f47a25132578be8101ea45b41f24d5ea6a829&type=1&siteId=1487944623&spaceNameList=新PID创建"; // JDK 8u111版本后,若目标页面为HTTPS协议,请启用proxy用户密码鉴权 //System.setProperty("jdk.http.auth.tunneling.disabledSchemes", ""); // 发送请求 String result = HttpRequest.get(url) .timeout(10000)//设置超时,毫秒 .execute().body(); System.out.println(result); } }
import requests # 要访问的API网页 target_url = "http://api.veapi.cn/jd/createpid?vekey=xxx&unionId=xxx&unionType=4&key=ece1b6ab1c8b27a738757bac144b52defe3346604e5f47a25132578be8101ea45b41f24d5ea6a829&type=1&siteId=1487944623&spaceNameList=新PID创建" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
resultList | Map | 是 | 推广位结果集合 | |
└─ result | String | 是 | 6186666082 | 推广位结果,但是对应的pid不能作为母子分佣使用。 |
pid | Map | 否 | pid结果集,仅uniontype传4时才有该字段返回 | |
└─ pid | String | 否 | 52267_0_3002884236 | pid结果,仅uniontype传4时,展示pid;可用于内容平台推广 |
siteId | Number | 是 | 1 | 站点ID |
type | Number | 是 | 4 | 站点类型 1.网站推广位2.APP推广位3.导购媒体推广位4.聊天工具推广位 |
unionId | Number | 是 | 618618 | 联盟ID |
{ "error": "0", "msg": "查询成功!(注:这个返回值是传参uniontype=4,才有data[pid]字段,并能在京东联盟后台看到)", "data": { "pid": { "新后端PID202301": "1001034551_1487944623_3100172754" }, "resultList": { "新后端PID202301": "3100172754" }, "siteId": "1487944623", "type": "1", "unionId": "1001034551" }, "request_id": "q18kCe6" }