接口使用场景等说明:本接口是用来把淘宝天猫商品数字ID转换成新的淘宝联盟动态字符串ID,包括aaa-bbb两段式。
本接口需要您使用淘宝联盟授权,并在会员中心设置默认PID。
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/tbk/numidtostrid | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
numid | String | 是 | 551700864501 | 淘宝数字商品ID |
pid | String | 是 | mm_111_222_#33 | 推广位全串 |
relation_id | String | 是 | 655655121 | 渠道ID,如果不了解渠道ID,请参考这里 |
GET/POST http://api.veapi.cn/tbk/numidtostrid?vekey=xxx&numid=551700864501
$api="http://api.veapi.cn/tbk/numidtostrid?vekey=xxx&numid=551700864501"; $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/numidtostrid?vekey=xxx&numid=551700864501"; // 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/numidtostrid?vekey=xxx&numid=551700864501" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 示例值 | 描述 |
---|---|---|---|
numiid | String | 551700864501 | 淘宝商品原数字ID,也是您的入参值 |
stringid | String | nJ5Ya3KIMtMyRpgFmoahYUP-bxY1RdsBoBkz3qNtK | 入参数字商品ID得到的字符串ID |
{ "error": "0", "msg": "数字ID转字符串ID成功", "data": { "numiid": "551700864501", "stringid": "nJ5Ya3KIMtMyRpgFmoahYUP-bxY1RdsBoBkz3qNtK" }, "request_id": "VHr4Cgw" }