接口使用场景等说明:拍立淘接口包含2部分:
拍立淘插件转链API:用于为淘宝客提供开启拍立淘插件(根据图片搜索商品),获取推广链接的功能。
商业化图片生成API:可通过该接口帮助推广者对目标图片生成带有推广者信息的暗码图。
本接口文档为拍立淘插件转链API
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/tbk/pailitaoconvert | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
pid | String | 否 | mm_11_22_33 | 您的淘客推广位PID,如果您在会员中心有设置,则可忽略。 |
relation_id | String | 否 | 556656612 | 您的渠道ID,当使用本参数时,请务必确保PID是“渠道专属PID”才有效。 |
type | Number | 否 | 0 | 转链类型:0-代表转官方插件;1-代表转deeplink链接 |
GET/POST http://api.veapi.cn/tbk/pailitaoconvert?vekey=xxx&relation_id=xx&pid=
$api="http://api.veapi.cn/tbk/pailitaoconvert?vekey=xxx&relation_id=xx&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/tbk/pailitaoconvert?vekey=xxx&relation_id=xx&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/tbk/pailitaoconvert?vekey=xxx&relation_id=xx&pid=" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 示例值 | 描述 |
---|---|---|---|
url | String | taobao://h5.m.taobao.com/tuso... | 表示根据入参信息,转出开启官方拍立淘插件URL或deeplink链接 |
{ "error": "0", "msg": "拍立淘插件转链成功", "data": { "url": "taobao://h5.m.taobao.com/tusou/capture.html?widget=true&es=7lGXQk2R3%2F45LgtCDIJe....", "request_id": "uc4xlpcpr9ni" } }