接口使用场景等说明:淘口令解密或二合一链接解密接口,是淘客很频繁使用的一个接口,比如:
1、顾客在别的微信群或QQ群拿到一个产品字串,里面含有别人的淘口令,包含了加密的二合一字串。当顾客发到你的应用时,你要能解密,才能转换成你自己的淘口令。
2、当顾客复制了手淘或联盟上的链接时,您也需要解密。
正确解密才能进一步进行淘客高佣转链和提取产品信息。
注意:
1、如果使用本站高佣API,则不需要调用本接口。因为高佣转链接口已经包含解密功能。
2、本接口只能用于解析淘客推广的产品。
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/tbk/dec | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
para | String | 是 | ¥TdfobCY0orS¥ | 要解密的字串:可以是淘口令,也可以是二合一链接,也可以是s.click链接,或tb.cn链接。当您传递链接类参数时,请先编码后传入URL中。否则可能会返回异常结果。 |
needprice | Number | 否 | 0(默认值) | 是否需要商品价格,可选0或1,默认值0不输出商品原价和折后价。 |
parsetkl | Number | 否 | 0(默认值) | 可选值1,这时接口会解析淘口令提取其中的原始url |
GET/POST http://api.veapi.cn/tbk/dec?vekey=xxxxxx¶=https://s.click.taobao.com/T31gVPw
$api="http://api.veapi.cn/tbk/dec?vekey=xxxxxx¶=https://s.click.taobao.com/T31gVPw"; $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/dec?vekey=xxxxxx¶=https://s.click.taobao.com/T31gVPw"; // 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/dec?vekey=xxxxxx¶=https://s.click.taobao.com/T31gVPw" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 示例值 | 描述 |
---|---|---|---|
num_iid | String | 628277101391 | 传参中原始产品ID |
title | String | 纯钢实心电镀可拆卸哑铃 | 产品标题 |
pict_url | String | https://img...jpg | 主图 |
user_type | String | 0 | 产品所在平台类型0淘宝,1天猫,3淘特 |
item_url | String | https://...id=628277101391 | 产品详情页URL,如果产品已在淘客中有新的字符串,这里返回值是https://uland.taobao.com/item/edetail?id=gnXOzjbt3t2-g8Da92s2b这种格式。 |
reserve_price | String | 499 | 原价 |
zk_final_price | String | 128 | 折后价 |
seller_id | String | 154248300390855179 | 卖家ID,可用于店铺推广转链 |
{ "error": "0", "msg": "查询成功", "num_iid": "628277101391", "title": "纯钢实心电镀可拆卸哑铃健身练臂肌多功能杠铃工厂瑕疵处理不包胶", "pict_url": "https://img.alicdn.com/bao/uploaded/i3/2734758203/O1CN01fgeSyy2AT1hVp3BKk_!!2734758203.jpg", "user_type": "0", "item_url": "https://uland.taobao.com/item/edetail?id=gnXOzjbt3t242ogS7pkF6ur-g8Da92s2b8rr7NaH2", "reserve_price": "499", "zk_final_price": "128", "seller_id": "154248300390855179", "request_id": "NAAXDKq" }