接口使用场景等说明:本接口用于创建淘宝客的自有媒体的推广位pid(广告位)创建。
本接口适合淘宝客在淘宝联盟后台创建了“自有媒体”的应用后,拥有网站ID后,才能调用本接口。
【批量创建PID推广注意事项】
淘宝联盟每个帐号总PID数限制200个,包含其中20个是渠道专属PID(用于和rid配套使用),并且渠道专属PID是不能删除的,否则删除后,20个渠道专属PID名额也不会恢复。
因此,当您要批量创建PID时,请谨慎调用。
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/tbk/createpid | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
site_id | String | 是 | 56699881122 | 网站ID,必须先在淘宝联盟后台创建。 |
adzone_name | String | 是 | xxx渠道专用 | 推广广告位名称,用于和别的推广位区分用。 |
GET/POST http://api.veapi.cn/tbk/createpid?vekey=xxx&site_id=1600126&adzone_name=网站新推广位
$api="http://api.veapi.cn/tbk/createpid?vekey=xxx&site_id=1600126&adzone_name=网站新推广位"; $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/tbk/createpid?vekey=xxx&site_id=1600126&adzone_name=网站新推广位"; // 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/tbk/createpid?vekey=xxx&site_id=1600126&adzone_name=网站新推广位" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 示例值 | 描述 |
---|---|---|---|
new_pid | String | mm_11_22_33 | 创建生成的推广位。其末段(如下例的111660332172)就是广告位。 |
{ "error": "0", "msg": "推广者位创建成功", "data": { "new_pid": "mm_21872162_16032126_111660332172" }, "request_id": "eRXzE5K" }