万邦淘宝/天猫获得淘宝app商品详情原数据 API 返回值说明

item_get_app-获得淘宝app商品详情原数据 [查看演示] API测试工具 注册开通

taobao.item_get_app(Ver:4.0.4-7.0)

  • taobao.item_get_app-1.0.0-6.0.html
  • taobao.item_get_app-1.0.0-7.0.html
  • taobao.item_get_app-2.0.0-1.0.html
  • taobao.item_get_app-2.0.0-2.0.html
  • taobao.item_get_app-2.0.0-3.0.html
  • taobao.item_get_app-2.0.0-7.0.html
  • taobao.item_get_app-3.0.0-7.0.html
  • taobao.item_get_app-4.0.0-7.0.html
  • taobao.item_get_app-4.0.1-7.0.html
  • taobao.item_get_app-4.0.2-7.0.html
  • taobao.item_get_app-4.0.3-7.0.html
  • taobao.item_get_app-4.0.4-7.0.html
  • taobao.item_get_app-4.0.5-7.0.html
  • taobao.item_get_app-4.0.6-7.0.html
  • 公共参数

    请求地址: https://api-gw.onebound.cn/taobao/item_get_app

    名称 类型 必须 描述
    keyString调用key(必须以GET方式拼接在URL中)
    secretString调用密钥
    api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
    cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
    result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
    langString[cn,en,ru]翻译语言,默认cn简体中文
    versionStringAPI版本
    请求参数

    请求参数:num_iid=520813250866

    参数说明:num_iid:淘宝商品ID

    响应参数

    Version:4.0.4-7.0 Date:2024-6-15

    名称 类型 必须 示例值 描述
    item
    Mix 1 获得淘宝app商品详情原数据
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($curl, CURLOPT_FAILONERROR, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HEADER, true);
    curl_setopt($curl, CURLOPT_ENCODING, "gzip");
    var_dump(curl_exec($curl));
    ?>
    <?php
    //定义缓存目录和引入文件
    define("DIR_RUNTIME","runtime/");
    define("DIR_ERROR","runtime/");
    define("SECACHE_SIZE","0");
    //SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
    include ("ObApiClient.php");
    
    $obapi = new otao\ObApiClient();
    $obapi->api_url = "http://api-gw.onebound.cn/";
    $obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
    $obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
    $obapi->api_key = "<您自己的apiKey>";
    $obapi->api_secret = "<您自己的apiSecret>";
    $obapi->api_version ="";
    $obapi->secache_path ="runtime/";
    $obapi->secache_time ="86400";
    $obapi->cache = true;
    
    $api_data = $obapi->exec(
                    array(
    	                "api_type" =>"taobao",
    	                "api_name" =>"item_get_app",
    	                "api_params"=>array (
      'num_iid' => '520813250866',
    )
                    )
                );
     var_dump($api_data);
    ?>
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.Reader;
    import java.net.URL;
    import java.nio.charset.Charset;
    import org.json.JSONException;
    import org.json.JSONObject;
    import java.io.PrintWriter;
    import java.net.URLConnection;
    
    public class Example {
    	private static String readAll(Reader rd) throws IOException {
    		StringBuilder sb = new StringBuilder();
    		int cp;
    		while ((cp = rd.read()) != -1) {
    			sb.append((char) cp);
    		}
    		return  sb.toString();
    	}
    	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
    		URL realUrl = new URL(url);
    		URLConnection conn = realUrl.openConnection();
    		conn.setDoOutput(true);
    		conn.setDoInput(true);
    		PrintWriter out = new PrintWriter(conn.getOutputStream());
    		out.print(body);
    		out.flush();
    		InputStream instream = conn.getInputStream();
    		try {
    			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
    			String jsonText = readAll(rd);
    			JSONObject json = new JSONObject(jsonText);
    			return json;
    		} finally {
    			instream.close();
    		}
    	}
    	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
    		URL realUrl = new URL(url);
    		URLConnection conn = realUrl.openConnection();
    		InputStream instream = conn.getInputStream();
    		try {
    			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
    			String jsonText = readAll(rd);
    			JSONObject json = new JSONObject(jsonText);
    			return json;
    		} finally {
    			instream.close();
    		}
    	}
    	public static void main(String[] args) throws IOException, JSONException {
    		// 请求示例 url 默认请求参数已经URL编码处理
    		String url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    		JSONObject json = getRequestFromUrl(url);
    		System.out.println(json.toString());
    	}
    
    }
    //using System.Net.Security;
    //using System.Security.Cryptography.X509Certificates;
    private const String method = "GET";
    static void Main(string[] args)
    {
    	String bodys = "";
    	// 请求示例 url 默认请求参数已经做URL编码
    	String url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    	HttpWebRequest httpRequest = null;
    	HttpWebResponse httpResponse = null; 
    	if (url.Contains("https://"))
    	{
    		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
    		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
    	}
    	else
    	{
    		httpRequest = (HttpWebRequest)WebRequest.Create(url);
    	}
    	httpRequest.Method = method;
    	if (0 < bodys.Length)
    	{
    		byte[] data = Encoding.UTF8.GetBytes(bodys);
    		using (Stream stream = httpRequest.GetRequestStream())
    		{
    		stream.Write(data, 0, data.Length);
    		}
    	}
    	try
    	{
    		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
    	}
    	catch (WebException ex)
    	{
    		httpResponse = (HttpWebResponse)ex.Response;
    	}
    	Console.WriteLine(httpResponse.StatusCode);
    	Console.WriteLine(httpResponse.Method);
    	Console.WriteLine(httpResponse.Headers);
    	Stream st = httpResponse.GetResponseStream();
    	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
    	Console.WriteLine(reader.ReadToEnd());
    	Console.WriteLine("\n");
    }
    public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
    {
    	return true;
    }
    # coding:utf-8
    """
    Compatible for python2.x and python3.x
    requirement: pip install requests
    """
    from __future__ import print_function
    import requests
    # 请求示例 url 默认请求参数已经做URL编码
    url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"
    headers = {
        "Accept-Encoding": "gzip",
        "Connection": "close"
    }
    if __name__ == "__main__":
        r = requests.get(url, headers=headers)
        json_obj = r.json()
        print(json_obj)
    url := fmt.Sprintf("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866", params)
    req, err := http.NewRequest("GET", url, nil)
    if err != nil {
        panic(err)
    }
    req.Header.Set("Authorization", apiKey)
    
    client := &http.Client{}
    resp, err := client.Do(req)
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()
    
    body, err := ioutil.ReadAll(resp.Body)
    if err != nil {
        panic(err)
    }
    
    fmt.Println(string(body))
    
    fetch('https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"520813250866"})// request parameters here
    })
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error(error));
    
    <script src="js/obapi.js"></script>
    <script type="text/javascript">
    obAPI.config({
        debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
        api_url: "https://api-gw.onebound.cn", // 
        api_key: "<您自己的apiKey>", // 必填,
        api_secret: "<您自己的apiSecret>", //
        lang: "cn", // 
        timestamp: "", // 必填,生成签名的时间戳
        nonceStr: "", // 必填,生成签名的随机串
        signature: "",// 必填,签名
        jsApiList: [] // 必填,需要使用的JS接口列表
    });
    </script>
    <div id="api_data_box"></div>
    <script type="text/javascript">
    obAPI.exec(
         {
         "api_type":"taobao",
         "api_name" : "item_get_app",
         "api_params": {"num_iid":"520813250866"}//num_iid=520813250866,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
    http = Net::HTTP.new(url.host, url.port)
    http.use_ssl = true
    request = Net::HTTP::Get.new(url)
    response = http.request(request)
    puts response.read_body 
    
    import Foundation
     
    let url = URL(string: "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")!
    let task = URLSession.shared.dataTask(with: url) { data, response, error in
        guard let data = data else {
            print("Error: No data was returned")
            return
        }
         
        if let data = String(data: data, encoding: .utf8) {
            print(data)
        }
    }
    task.resume()
    
    NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"];
    
    NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];
    
    [request setHTTPMethod:@"GET"];
    NSError *error;
    NSURLResponse *response;
    
    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
    
    NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
    NSLog(@"%@",result);
    
    #include<stdio.h>
    #include <stdlib.h>
    #include<string.h>
    #include<curl/curl.h>
    
    int main(){
      CURL *curl;  
      CURLcode res;   
      struct curl_slist *headers=NULL; 
    
      char url[] = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
      curl_global_init(CURL_GLOBAL_ALL); 
      curl = curl_easy_init(); 
    
      if(curl) {
        curl_easy_setopt(curl, CURLOPT_URL,url);
        headers = curl_slist_append(headers, "Content-Type: application/json"); 
    
        curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
        res = curl_easy_perform(curl);
    
        if(res != CURLE_OK){
          printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
        }
        curl_easy_cleanup(curl);          
      }
      curl_global_cleanup();
      return 0;
    }
    
    #include<iostream>
    #include<string>
    #include<curl/curl.h>
    
    using namespace std;
    
    static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
    {
        std::size_t realSize = size *nmemb;
        auto *realPtr = reinterpret_cast<char *>(ptr);
    
        for (std::size_t i=0;i<realSize;++i) {
            *(stream) += *(realPtr + i);
        }
    
        return realSize;
    }
    
    int main(){
    
         CURL *curl;
         CURLcode result;
         string readBuffer;
         curl = curl_easy_init();
    
         if(curl) {
    
             curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866");
             curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
             curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
             curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
    
             result = curl_easy_perform(curl);
    
             if(result == CURLE_OK) {
                 cout<<readBuffer<<endl;
             }else{
                 cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
             }
    
             curl_easy_cleanup(curl);
         }
         return 0;
    }
    
    const https = require("https");
    
    https.get("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866", (resp) => {
      let data = "";
    
      resp.on("data", (chunk) => {
        data += chunk;
      });
    
      resp.on("end", () => {
        console.log(data);
      });
    }).on("error", (err) => {
      console.log("Error: " + err.message);
    });
    
    import java.net.HttpURLConnection
    import java.net.URL
    
    fun main() {
        val url = URL("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
        val con = url.openConnection() as HttpURLConnection
        con.requestMethod = "GET"
    
        val responseCode = con.responseCode
        if (responseCode == HttpURLConnection.HTTP_OK) { // success
            val inputLine = con.inputStream.bufferedReader().use { it.readText() }
            println(inputLine)
        } else {
            println("GET request failed")
        }
    }
    
    use std::io::{self, Read};
    use reqwest;
    
    fn main() -> io::Result<()> {
    
        let mut resp = reqwest::get("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
    content(r)
    url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    response = webread(url);
    disp(response);
    
    响应示例
    {
        "item": {
            "componentsVO": {
                "bottomBarVO": {
                    "buyInMobile": "false",
                    "leftButtons": [
                        {
                            "background": {
                                "alpha": "1.0",
                                "disabledAlpha": "1.0",
                                "disabledColor": [
                                    "#ff7700",
                                    "#ff4900"
                                ],
                                "gradientColor": [
                                    "#ff7700",
                                    "#ff4900"
                                ]
                            },
                            "disabled": "false",
                            "title": {
                                "alpha": "1.0",
                                "bold": "true",
                                "color": "#ffffff",
                                "disabledAlpha": "0.2",
                                "disabledColor": "#80ffffff",
                                "fontSize": "16",
                                "text": "立即购买"
                            },
                            "type": "buy_now"
                        },
                        {
                            "background": {
                                "alpha": "1.0",
                                "disabledAlpha": "1.0",
                                "disabledColor": [
                                    "#ffcb00",
                                    "#ff9402"
                                ],
                                "gradientColor": [
                                    "#ffcb00",
                                    "#ff9402"
                                ]
                            },
                            "disabled": "false",
                            "title": {
                                "alpha": "1.0",
                                "bold": "true",
                                "color": "#ffffff",
                                "disabledAlpha": "0.2",
                                "disabledColor": "#33ffffff",
                                "fontSize": "16",
                                "text": "加入购物车"
                            },
                            "type": "add_cart"
                        }
                    ],
                    "rightButtons": [
                        {
                            "disabled": "false",
                            "icon": {
                                "alpha": "1.0",
                                "color": "#666666",
                                "disabledAlpha": "1.0",
                                "disabledColor": "#dddddd",
                                "iconFontName": "뀚",
                                "size": "14"
                            },
                            "title": {
                                "alpha": "1.0",
                                "bold": "false",
                                "color": "#666666",
                                "disabledAlpha": "1.0",
                                "disabledColor": "#666666",
                                "fontSize": "14",
                                "text": "收藏"
                            },
                            "type": "collect"
                        }
                    ]
                },
                "debugVO": {
                    "host": "taodetail033051197006.center.na620@33.51.197.6",
                    "traceId": "2147821a17175499976885872ec34a"
                },
                "deliveryVO": {
                    "agingDesc": "预售,付款后20天内发货",
                    "areaId": "140826",
                    "deliverToCity": "运城市",
                    "deliveryFromAddr": "广东广州",
                    "deliveryToAddr": "运城市 绛县",
                    "deliveryToDistrict": "绛县",
                    "freight": "快递: 免运费"
                },
                "extensionInfoVO": {
                    "infos": [
                        {
                            "items": [
                                {
                                    "text": [
                                        "店铺券满6减5"
                                    ]
                                },
                                {
                                    "text": [
                                        "满1件9.5折"
                                    ]
                                }
                            ],
                            "title": "优惠",
                            "type": "DAILY_COUPON"
                        },
                        {
                            "items": [
                                {
                                    "icon": "https://gw.alicdn.com/tfs/TB1ZkCGAKH2gK0jSZJnXXaT1FXa-184-52.png",
                                    "text": [
                                        "最多送600元,全店通用更划算"
                                    ]
                                }
                            ],
                            "title": "活动",
                            "type": "ACTIVITIES"
                        },
                        {
                            "items": [
                                {
                                    "text": [
                                        "假一赔四",
                                        "退货运费险",
                                        "极速退款",
                                        "7天无理由退换"
                                    ]
                                }
                            ],
                            "title": "保障",
                            "type": "GUARANTEE"
                        },
                        {
                            "items": [
                                {
                                    "text": [
                                        "APEA"
                                    ],
                                    "title": "品牌"
                                },
                                {
                                    "text": [
                                        "复古风"
                                    ],
                                    "title": "风格"
                                },
                                {
                                    "text": [
                                        "木耳 绑带"
                                    ],
                                    "title": "流行元素/工艺"
                                },
                                {
                                    "text": [
                                        "低腰"
                                    ],
                                    "title": "腰型"
                                },
                                {
                                    "text": [
                                        "纯电商(只在线上销售)"
                                    ],
                                    "title": "销售渠道类型"
                                },
                                {
                                    "text": [
                                        "短袖"
                                    ],
                                    "title": "袖型"
                                },
                                {
                                    "text": [
                                        "棉72.0% 聚酯纤维23.0% 聚氨酯弹性纤维(氨纶)5.0%"
                                    ],
                                    "title": "材质成分"
                                },
                                {
                                    "text": [
                                        "蛋糕裙"
                                    ],
                                    "title": "裙型"
                                },
                                {
                                    "text": [
                                        "YC-DSL24S2364"
                                    ],
                                    "title": "货号"
                                },
                                {
                                    "text": [
                                        "夏季"
                                    ],
                                    "title": "适用季节"
                                },
                                {
                                    "text": [
                                        "18-24周岁"
                                    ],
                                    "title": "适用年龄"
                                },
                                {
                                    "text": [
                                        "蛋糕裙"
                                    ],
                                    "title": "款式"
                                },
                                {
                                    "text": [
                                        "其他"
                                    ],
                                    "title": "组合形式"
                                },
                                {
                                    "text": [
                                        "2024年夏季"
                                    ],
                                    "title": "年份季节"
                                },
                                {
                                    "text": [
                                        "短袖"
                                    ],
                                    "title": "袖长"
                                },
                                {
                                    "text": [
                                        "短裙"
                                    ],
                                    "title": "裙长"
                                },
                                {
                                    "text": [
                                        "V领"
                                    ],
                                    "title": "领型"
                                },
                                {
                                    "text": [
                                        "纯色"
                                    ],
                                    "title": "图案"
                                },
                                {
                                    "text": [
                                        "S M L"
                                    ],
                                    "title": "尺码"
                                },
                                {
                                    "text": [
                                        "黑色 米白 灰绿 黑色【预售】 米白【预售】 灰绿【预售】"
                                    ],
                                    "title": "颜色分类"
                                }
                            ],
                            "title": "参数",
                            "type": "BASE_PROPS"
                        }
                    ]
                },
                "headImageVO": {
                    "images": [
                        "https://img.alicdn.com/bao/uploaded/i3/2200576249924/O1CN01MvshqE2NBFVrq0VI3_!!0-item_pic.jpg",
                        "https://img.alicdn.com/imgextra/i1/2200576249924/O1CN01AUzeeS2NBFVw8vOfo_!!2200576249924.jpg",
                        "https://img.alicdn.com/imgextra/i4/2200576249924/O1CN018WvzNw2NBFVzOvPUD_!!2200576249924.jpg",
                        "https://img.alicdn.com/imgextra/i4/2200576249924/O1CN01oEfUB62NBFVwu8rjP_!!2200576249924.jpg",
                        "https://img.alicdn.com/imgextra/i3/2200576249924/O1CN0176Fs0y2NBFVucmaVv_!!2200576249924.jpg"
                    ],
                    "videos": [
                        {
                            "actionEvent": {
                                "exposureArgs": {
                                    "item_id": "793907130883",
                                    "video_id": "462506498547"
                                },
                                "openUrlEventArgs": {
                                    "enableUserTrackEvent": "true",
                                    "userTrackArgs": {
                                        "arg1": "Page_Detail_Videos_Dx_Skip",
                                        "item_id": "793907130883",
                                        "page": "Page_Detail",
                                        "type": "userTrack",
                                        "video_id": "462506498547"
                                    }
                                }
                            },
                            "itemId": "793907130883",
                            "spatialVideoDimension": "3:4",
                            "type": "3",
                            "url": "https://cloud.video.taobao.com/play/u/2200576249924/p/2/e/6/t/1/462506498547.mp4?appKey=38829",
                            "videoId": "462506498547",
                            "videoThumbnailURL": "https://img.alicdn.com/bao/uploaded/i3/2200576249924/O1CN01MvshqE2NBFVrq0VI3_!!0-item_pic.jpg",
                            "weexRecommendUrl": "https://market.m.taobao.com/apps/market/detailrax/recommend-items.html?spm=a2116h.app.0.0.16d957e9U2bxVj&wh_weex=true&itemId=793907130883"
                        }
                    ]
                },
                "headerVO": {
                    "buttons": [
                        {
                            "background": {
                                "alpha": "1.0",
                                "disabledAlpha": "1.0"
                            },
                            "disabled": "false",
                            "events": [
                                {
                                    "fields": {
                                        "url": "//s.taobao.com/search"
                                    },
                                    "type": "onClick"
                                }
                            ],
                            "subTitle": [
    
                            ],
                            "title": {
                                "text": "搜索"
                            },
                            "type": "search_in_taobao"
                        },
                        {
                            "background": {
                                "alpha": "1.0",
                                "disabledAlpha": "1.0"
                            },
                            "disabled": "false",
                            "events": [
                                {
                                    "fields": {
                                        "url": "//shop287063897.taobao.com/search.htm"
                                    },
                                    "type": "onClick"
                                }
                            ],
                            "subTitle": [
    
                            ],
                            "title": {
                                "text": "搜本店"
                            },
                            "type": "search_in_store"
                        }
                    ],
                    "logoJumpUrl": "https://www.tmall.com",
                    "mallLogo": "https://img.alicdn.com/imgextra/i2/O1CN01a69z6z1hJklCkBqOU_!!6000000004257-2-tps-174-106.png",
                    "searchText": "搜索宝贝"
                },
                "priceVO": {
                    "price": {
                        "hiddenPrice": "false",
                        "priceActionText": "",
                        "priceActionType": "buy_in_mobile",
                        "priceColor": "#FF4F00",
                        "priceMoney": "16900",
                        "priceText": "169",
                        "priceTitleColor": "#FF4F00",
                        "priceUnit": "¥"
                    }
                },
                "rightBarVO": {
                    "buyerButtons": [
                        {
                            "disabled": "false",
                            "icon": "//gw.alicdn.com/imgextra/i3/O1CN01CEAqor1T5Bm2U3Ccm_!!6000000002330-2-tps-48-44.png",
                            "label": "联系客服",
                            "type": "wangwang"
                        },
                        {
                            "disabled": "false",
                            "icon": "//gw.alicdn.com/imgextra/i3/O1CN01Od2GJC1fxwVlcd1UA_!!6000000004074-2-tps-56-56.png",
                            "label": "购物车",
                            "type": "cart"
                        },
                        {
                            "disabled": "false",
                            "href": "https://h5.m.taobao.com/awp/core/detail.htm?id=793907130883",
                            "icon": "//gw.alicdn.com/imgextra/i1/O1CN01D84lgZ1zRgxZVZYLE_!!6000000006711-55-tps-28-28.svg",
                            "label": "商品码",
                            "type": "qrcode"
                        },
                        {
                            "disabled": "false",
                            "icon": "//gw.alicdn.com/imgextra/i3/O1CN01qyqd6N271bIfKZwyt_!!6000000007737-2-tps-56-56.png",
                            "label": "反馈",
                            "type": "feedback"
                        },
                        {
                            "disabled": "false",
                            "href": "//jubao.taobao.com/index.htm?itemId=793907130883&spm=a1z6q.7847058",
                            "icon": "//gw.alicdn.com/imgextra/i4/O1CN015gkFg01D6X5DPZua9_!!6000000000167-2-tps-56-56.png",
                            "label": "举报",
                            "type": "report"
                        },
                        {
                            "disabled": "false",
                            "type": "backTop"
                        }
                    ],
                    "sellerButtons": [
    
                    ]
                },
                "storeCardVO": {
                    "buttons": [
                        {
                            "disabled": "false",
                            "image": {
                                "gifAnimated": "false",
                                "imageUrl": "https://img.alicdn.com/imgextra/i1/O1CN016DNujx1yMMj6NMXVv_!!6000000006564-55-tps-24-24.svg"
                            },
                            "title": {
                                "text": "联系客服"
                            },
                            "type": "customer_service"
                        },
                        {
                            "disabled": "false",
                            "events": [
                                {
                                    "fields": {
                                        "url": "//shop287063897.taobao.com"
                                    },
                                    "type": "openUrl"
                                }
                            ],
                            "image": {
                                "gifAnimated": "false",
                                "imageUrl": "https://img.alicdn.com/imgextra/i4/O1CN01jn67ow1ZhYeiTJlZn_!!6000000003226-55-tps-24-24.svg"
                            },
                            "title": {
                                "text": "进入店铺"
                            },
                            "type": "enter_shop"
                        }
                    ],
                    "creditLevel": "14",
                    "creditLevelIcon": "//gw.alicdn.com/imgextra/i1/O1CN01VD9Iap25oweneR31D_!!6000000007574-2-tps-120-60.png",
                    "evaluates": [
                        {
                            "level": "1",
                            "levelText": "高",
                            "score": "4.7 ",
                            "title": "宝贝描述",
                            "type": "desc"
                        },
                        {
                            "level": "1",
                            "levelText": "高",
                            "score": "4.8 ",
                            "title": "卖家服务",
                            "type": "serv"
                        },
                        {
                            "level": "1",
                            "levelText": "高",
                            "score": "4.8 ",
                            "title": "物流服务",
                            "type": "post"
                        }
                    ],
                    "labelList": [
                        {
                            "contentDesc": "客服平均25秒回复"
                        },
                        {
                            "contentDesc": "服务体验良好"
                        },
                        {
                            "contentDesc": "商品体验良好"
                        }
                    ],
                    "overallScore": "4.0",
                    "sellerType": "B",
                    "shopIcon": "https://img.alicdn.com/imgextra/i2/2200576249924/O1CN016x78AN2NBFUXrkYOJ_!!2200576249924.jpg",
                    "shopName": "apea旗舰店",
                    "shopUrl": "//shop287063897.taobao.com",
                    "startsIcon": "https://img.alicdn.com/imgextra/i4/O1CN01tMiOur1U6OFc3CkX7_!!6000000002468-2-tps-91-14.png"
                },
                "titleVO": {
                    "salesDesc": "已售 100+",
                    "subTitles": [
    
                    ],
                    "title": {
                        "title": "APEA浪漫复古风高弹针织木耳边绑带收腰连衣裙夏季修身显瘦短裙子"
                    }
                }
            },
            "feature": {
                "pcResistDetail": "false",
                "tmwOverseasScene": "false"
            },
            "item": {
                "images": [
                    "https://img.alicdn.com/bao/uploaded/i3/2200576249924/O1CN01MvshqE2NBFVrq0VI3_!!0-item_pic.jpg",
                    "https://img.alicdn.com/imgextra/i1/2200576249924/O1CN01AUzeeS2NBFVw8vOfo_!!2200576249924.jpg",
                    "https://img.alicdn.com/imgextra/i4/2200576249924/O1CN018WvzNw2NBFVzOvPUD_!!2200576249924.jpg",
                    "https://img.alicdn.com/imgextra/i4/2200576249924/O1CN01oEfUB62NBFVwu8rjP_!!2200576249924.jpg",
                    "https://img.alicdn.com/imgextra/i3/2200576249924/O1CN0176Fs0y2NBFVucmaVv_!!2200576249924.jpg"
                ],
                "itemId": "793907130883",
                "pcADescUrl": "//market.m.taobao.com/app/detail-project/desc/index.html?id=793907130883&descVersion=7.0&type=1&f=icoss!0793907130883!1922332388&sellerType=B",
                "qrCode": "https://h5.m.taobao.com/awp/core/detail.htm?id=793907130883",
                "spuId": "7161036493",
                "title": "APEA浪漫复古风高弹针织木耳边绑带收腰连衣裙夏季修身显瘦短裙子",
                "titleIcon": "//img.alicdn.com/tfs/TB1SMG7nnvI8KJjSspjXXcgjXXa-78-36.png?getAvatar=avatar",
                "useWirelessDesc": "true",
                "vagueSellCount": "100+",
                "videos": [
                    {
                        "actionEvent": {
                            "exposureArgs": {
                                "item_id": "793907130883",
                                "video_id": "462506498547"
                            },
                            "openUrlEventArgs": {
                                "enableUserTrackEvent": "true",
                                "userTrackArgs": {
                                    "arg1": "Page_Detail_Videos_Dx_Skip",
                                    "item_id": "793907130883",
                                    "page": "Page_Detail",
                                    "type": "userTrack",
                                    "video_id": "462506498547"
                                }
                            }
                        },
                        "itemId": "793907130883",
                        "spatialVideoDimension": "3:4",
                        "type": "3",
                        "url": "https://cloud.video.taobao.com/play/u/2200576249924/p/2/e/6/t/1/462506498547.mp4?appKey=38829",
                        "videoId": "462506498547",
                        "videoThumbnailURL": "https://img.alicdn.com/bao/uploaded/i3/2200576249924/O1CN01MvshqE2NBFVrq0VI3_!!0-item_pic.jpg",
                        "weexRecommendUrl": "https://market.m.taobao.com/apps/market/detailrax/recommend-items.html?spm=a2116h.app.0.0.16d957e9U2bxVj&wh_weex=true&itemId=793907130883"
                    }
                ]
            },
            "params": {
                "aplusParams": "[]",
                "trackParams": {
                    "detailabtestdetail": ""
                }
            },
            "pcTrade": {
                "buyNowUrl": "//buy.tmall.com/order/confirm_order.htm",
                "pcBuyParams": {
                    "auction_type": "b",
                    "auto_post": "false",
                    "auto_post1": null,
                    "buy_now": "169.00",
                    "buyer_from": "ecity",
                    "current_price": "169.00",
                    "detailIsLimit": "false",
                    "etm": "post",
                    "page_from_type": "main_site_pc",
                    "photo_url": "i4/2200576249924/O1CN01I0y4EO2NBFW2YGByZ_!!2200576249924.jpg",
                    "region": "广东广州",
                    "rootCatId": "16",
                    "seller_id": "10a61aa484dc6b115f86b26b7116e8f7",
                    "seller_nickname": "apea旗舰店",
                    "title": "APEA浪漫复古风高弹针织木耳边绑带收腰连衣裙夏季修身显瘦短裙子",
                    "virtual": "false",
                    "who_pay_ship": "卖家承担运费",
                    "x-uid": ""
                },
                "pcCartParam": {
                    "areaId": "140826"
                },
                "tradeType": "2"
            },
            "seller": {
                "creditLevel": "14",
                "creditLevelIcon": "//gw.alicdn.com/imgextra/i1/O1CN01VD9Iap25oweneR31D_!!6000000007574-2-tps-120-60.png",
                "evaluates": [
                    {
                        "level": "1",
                        "levelText": "高",
                        "score": "4.7 ",
                        "title": "宝贝描述",
                        "type": "desc"
                    },
                    {
                        "level": "1",
                        "levelText": "高",
                        "score": "4.8 ",
                        "title": "卖家服务",
                        "type": "serv"
                    },
                    {
                        "level": "1",
                        "levelText": "高",
                        "score": "4.8 ",
                        "title": "物流服务",
                        "type": "post"
                    }
                ],
                "pcShopUrl": "//shop287063897.taobao.com",
                "sellerId": "2200576249924",
                "sellerNick": "apea旗舰店",
                "sellerType": "B",
                "shopIcon": "https://img.alicdn.com/imgextra/i2/2200576249924/O1CN016x78AN2NBFUXrkYOJ_!!2200576249924.jpg",
                "shopId": "287063897",
                "shopName": "apea旗舰店",
                "startsIcon": "https://img.alicdn.com/imgextra/i4/O1CN01tMiOur1U6OFc3CkX7_!!6000000002468-2-tps-91-14.png",
                "userId": "2200576249924"
            },
            "services": null,
            "skuBase": {
                "components": [
    
                ],
                "props": [
                    {
                        "hasImage": "true",
                        "name": "颜色分类",
                        "nameDesc": "(6)",
                        "pid": "1627207",
                        "values": [
                            {
                                "image": "https://gw.alicdn.com/bao/uploaded/i2/2200576249924/O1CN01imW5Gv2NBFVpwkqGK_!!2200576249924.jpg",
                                "name": "黑色",
                                "sortOrder": "0",
                                "vid": "28341"
                            },
                            {
                                "image": "https://gw.alicdn.com/bao/uploaded/i2/2200576249924/O1CN01TNvjnw2NBFVsfsiVx_!!2200576249924.jpg",
                                "name": "米白",
                                "sortOrder": "4",
                                "vid": "3224420"
                            },
                            {
                                "image": "https://gw.alicdn.com/bao/uploaded/i4/2200576249924/O1CN01SE3IAx2NBFVru9UaO_!!2200576249924.jpg",
                                "name": "灰绿",
                                "sortOrder": "5",
                                "vid": "14939124"
                            },
                            {
                                "image": "https://gw.alicdn.com/bao/uploaded/i3/2200576249924/O1CN01jhopTe2NBFVrpwc5J_!!2200576249924.jpg",
                                "name": "黑色【预售】",
                                "sortOrder": "6",
                                "vid": "385874643"
                            },
                            {
                                "image": "https://gw.alicdn.com/bao/uploaded/i1/2200576249924/O1CN01rUhCzZ2NBFVruBR9M_!!2200576249924.jpg",
                                "name": "米白【预售】",
                                "sortOrder": "7",
                                "vid": "559722608"
                            },
                            {
                                "image": "https://gw.alicdn.com/bao/uploaded/i3/2200576249924/O1CN01fp9Zsh2NBFVsfuvjE_!!2200576249924.jpg",
                                "name": "灰绿【预售】",
                                "sortOrder": "8",
                                "vid": "832850956"
                            }
                        ]
                    },
                    {
                        "hasImage": "false",
                        "name": "尺码",
                        "pid": "20509",
                        "values": [
                            {
                                "name": "S",
                                "sortOrder": "1",
                                "vid": "28314"
                            },
                            {
                                "name": "M",
                                "sortOrder": "2",
                                "vid": "28315"
                            },
                            {
                                "name": "L",
                                "sortOrder": "3",
                                "vid": "28316"
                            }
                        ]
                    }
                ],
                "skus": [
                    {
                        "propPath": "1627207:28341;20509:28314",
                        "skuId": "5421893305796"
                    },
                    {
                        "propPath": "1627207:28341;20509:28315",
                        "skuId": "5421893305797"
                    },
                    {
                        "propPath": "1627207:28341;20509:28316",
                        "skuId": "5421893305798"
                    },
                    {
                        "propPath": "1627207:3224420;20509:28314",
                        "skuId": "5421893305799"
                    },
                    {
                        "propPath": "1627207:3224420;20509:28315",
                        "skuId": "5421893305800"
                    },
                    {
                        "propPath": "1627207:3224420;20509:28316",
                        "skuId": "5421893305801"
                    },
                    {
                        "propPath": "1627207:14939124;20509:28314",
                        "skuId": "5421893305802"
                    },
                    {
                        "propPath": "1627207:14939124;20509:28315",
                        "skuId": "5421893305803"
                    },
                    {
                        "propPath": "1627207:14939124;20509:28316",
                        "skuId": "5421893305804"
                    },
                    {
                        "propPath": "1627207:385874643;20509:28314",
                        "skuId": "5421893305805"
                    },
                    {
                        "propPath": "1627207:385874643;20509:28315",
                        "skuId": "5421893305806"
                    },
                    {
                        "propPath": "1627207:385874643;20509:28316",
                        "skuId": "5421893305807"
                    },
                    {
                        "propPath": "1627207:559722608;20509:28314",
                        "skuId": "5421893305808"
                    },
                    {
                        "propPath": "1627207:559722608;20509:28315",
                        "skuId": "5421893305809"
                    },
                    {
                        "propPath": "1627207:559722608;20509:28316",
                        "skuId": "5421893305810"
                    },
                    {
                        "propPath": "1627207:832850956;20509:28314",
                        "skuId": "5421893305811"
                    },
                    {
                        "propPath": "1627207:832850956;20509:28315",
                        "skuId": "5421893305812"
                    },
                    {
                        "propPath": "1627207:832850956;20509:28316",
                        "skuId": "5421893305813"
                    }
                ]
            },
            "skuCore": {
                "sku2info": {
                    "0": {
                        "logisticsTime": "预售,付款后20天内发货",
                        "moreQuantity": "true",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "200",
                        "quantityText": "有货"
                    },
                    "5421893305796": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "moreQuantity": "false",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "0",
                        "quantityText": "无货"
                    },
                    "5421893305797": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "moreQuantity": "false",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "0",
                        "quantityText": "无货"
                    },
                    "5421893305798": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "moreQuantity": "false",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "0",
                        "quantityText": "无货"
                    },
                    "5421893305799": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "moreQuantity": "false",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "0",
                        "quantityText": "无货"
                    },
                    "5421893305800": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "moreQuantity": "false",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "0",
                        "quantityText": "无货"
                    },
                    "5421893305801": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "moreQuantity": "false",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "0",
                        "quantityText": "无货"
                    },
                    "5421893305802": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "moreQuantity": "false",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "0",
                        "quantityText": "无货"
                    },
                    "5421893305803": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "moreQuantity": "false",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "0",
                        "quantityText": "无货"
                    },
                    "5421893305804": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "moreQuantity": "false",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "0",
                        "quantityText": "无货"
                    },
                    "5421893305805": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "logisticsTime": "预售,付款后20天内发货",
                        "moreQuantity": "true",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "200",
                        "quantityText": "有货"
                    },
                    "5421893305806": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "logisticsTime": "预售,付款后20天内发货",
                        "moreQuantity": "true",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "200",
                        "quantityText": "有货"
                    },
                    "5421893305807": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "logisticsTime": "预售,付款后20天内发货",
                        "moreQuantity": "true",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "200",
                        "quantityText": "有货"
                    },
                    "5421893305808": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "logisticsTime": "预售,付款后20天内发货",
                        "moreQuantity": "true",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "200",
                        "quantityText": "有货"
                    },
                    "5421893305809": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "logisticsTime": "预售,付款后20天内发货",
                        "moreQuantity": "true",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "200",
                        "quantityText": "有货"
                    },
                    "5421893305810": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "logisticsTime": "预售,付款后20天内发货",
                        "moreQuantity": "true",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "200",
                        "quantityText": "有货"
                    },
                    "5421893305811": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "logisticsTime": "预售,付款后20天内发货",
                        "moreQuantity": "true",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "200",
                        "quantityText": "有货"
                    },
                    "5421893305812": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "logisticsTime": "预售,付款后20天内发货",
                        "moreQuantity": "true",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "200",
                        "quantityText": "有货"
                    },
                    "5421893305813": {
                        "cartParam": {
                            "addCartCheck": "true"
                        },
                        "logisticsTime": "预售,付款后20天内发货",
                        "moreQuantity": "true",
                        "price": {
                            "priceActionText": "",
                            "priceActionType": "buy_in_mobile",
                            "priceMoney": "16900",
                            "priceText": "169"
                        },
                        "quantity": "200",
                        "quantityText": "有货"
                    }
                },
                "skuItem": {
                    "itemStatus": "0",
                    "renderSku": "true",
                    "unitBuy": "1"
                }
            },
            "trackParams": {
                "BC_type": "B",
                "brandId": "135091807",
                "categoryId": "50010850"
            },
            "app_ver": "4.0.4-7.0",
            "_ddf": "szx",
            "app_ver_check": "ok",
            "format_check": "ok"
        },
        "error": "",
        "secache": "e3c10c89115fe77e5787028e6b740757",
        "secache_time": 1717549998,
        "secache_date": "2024-06-05 09:13:18",
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today: max:15000 all[=++];expires:2031-01-01",
        "execution_time": "1.831",
        "server_time": "Beijing/2024-06-05 09:13:18",
        "client_ip": "127.0.0.1",
        "call_args": {
            "num_iid": "793907130883"
        },
        "api_type": "taobao",
        "server_memory": "4.74MB",
        "last_id": false
    }
    异常示例
    {
            "error": "item-not-found",
            "reason": "商品没找到",
            "error_code": "2000",
            "success": 0,
            "cache": 0,
            "api_info": "today:0 max:10000",
            "execution_time": 0.081,
            "server_time": "Beijing/2020-06-10 23:44:00",
            "call_args": [],
            "api_type": "taobao",
            "request_id": "15ee0ffc041242"}
    相关资料
    错误码解释
    状态代码(error_code) 状态信息 详细描述 是否收费
    0000success接口调用成功并返回相关数据
    2000Search success but no result接口访问成功,但是搜索没有结果
    4000Server internal error服务器内部错误
    4001Network error网络错误
    4002Target server error目标服务器错误
    4003Param error用户输入参数错误忽略
    4004Account not found用户帐号不存在忽略
    4005Invalid authentication credentials授权失败忽略
    4006API stopped您的当前API已停用忽略
    4007Account stopped您的账户已停用忽略
    4008API rate limit exceeded并发已达上限忽略
    4009API maintenanceAPI维护中忽略
    4010API not found with these valuesAPI不存在忽略
    4012Please add api first请先添加api忽略
    4013Number of calls exceeded调用次数超限忽略
    4014Missing url param参数缺失忽略
    4015Wrong pageToken参数pageToken有误忽略
    4016Insufficient balance余额不足忽略
    4017timeout error请求超时
    5000unknown error未知错误
    API 工具
    如何获得此API
    立即开通 有疑问联系客服QQ:QQ:31424016063142401606(微信同号)