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

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

taobao.item_get_app(Ver:4.0.1-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
  • 公共参数

    请求地址: 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.1-7.0 Date:2024-03-25

    名称 类型 必须 示例值 描述
    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": {
            "apiStack": [
                {
                    "name": "esi",
                    "value": "{\"item\": {\"skuText\": \"\", \"images\": [\"https://img.alicdn.com/imgextra/i2/2682270869/O1CN019n1omT1II37ZuvTBS_!!2-item_pic.png\", \"https://img.alicdn.com/imgextra/i4/2682270869/O1CN01alRYZc1II33zZsCKi_!!2682270869.jpg\", \"https://img.alicdn.com/imgextra/i3/2682270869/O1CN01joAkWr1II33yQfZTK_!!2682270869.jpg\", \"https://img.alicdn.com/imgextra/i2/2682270869/O1CN01bocTzI1II33xIB6vZ_!!2682270869.jpg\", \"https://img.alicdn.com/imgextra/i3/2682270869/O1CN01MWg00q1II33xPQJLH_!!2682270869.jpg\"], \"extraMap\": {}, \"descType\": \"0\", \"infoText\": {}, \"itemId\": \"640075506865\", \"showShopActivitySize\": \"2\", \"spuId\": \"6641417992\", \"title\": \"雀巢佳膳悠选特医全营养配方粉含蛋白质肠内营养粉代餐中老年400g\"}, \"feature\": {\"hasSku\": \"true\", \"beltVersion\": \"UNIFY\", \"showSku\": \"true\", \"degradeNewTrade\": \"true\", \"isSkuOnebuy\": \"false\", \"newAddress\": \"true\", \"picSearchSimilar\": \"true\"}, \"delivery\": {\"addressWeexUrl\": \"\", \"from\": \"江苏苏州\", \"to\": \"京口区\", \"areaId\": \"321102\", \"postage\": \"免运费\", \"extras\": {}, \"areaSell\": \"false\", \"completedTo\": \"镇江市 京口区\", \"overseaContraBandFlag\": \"false\"}, \"trade\": {\"itemUrlFromType\": null, \"addToCartToastText\": \"添加成功,在购物车等亲~\", \"buyEnable\": \"true\", \"redirectUrl\": null, \"buyNowUrl\": null, \"cartEnable\": \"true\", \"tradeDisableTypeEnum\": null, \"buyText\": null, \"similarDetailParam\": null, \"cartJumpUrl\": \"https://h5.m.taobao.com/awp/base/cart.htm\", \"cartText\": null, \"subCartText\": null, \"hintBanner\": null, \"subBuyText\": null, \"startTime\": null, \"cartParam\": {\"buyFrom\": \"tmallplus\", \"itemType\": \"maoB\", \"areaId\": \"1\"}, \"buyParam\": {\"buyFrom\": \"tmallplus\", \"itemType\": \"maoB\", \"areaId\": \"1\"}, \"waitForStart\": null}, \"vertical\": {\"dianping\": {\"nodeName\": \"dianping\", \"features\": null, \"dianPingTextList\": null, \"firstDianpingText\": null, \"totalCount\": \"0\", \"descText\": \"200+条评价\", \"dianPingGrade\": null, \"content\": null}}, \"params\": {\"abParams\": null, \"trackParams\": {\"itemId\": \"640075506865\", \"shop_id\": \"148924970\", \"spm\": \"\", \"native_detail_v\": \"3.0\", \"bc_type\": \"B\", \"scm\": \"\", \"categoryId\": \"125088021\", \"seller_id\": \"2682270869\", \"brand_id\": \"6389013771\"}}, \"resource\": {\"relatedAuctions\": null, \"floatView\": [{\"template\": \"tm_detail_3_float_view\", \"fields\": {\"infos\": [{\"icon\": \"https://gw.alicdn.com/imgextra/i2/O1CN01dVUFIK1xLcPxOXIyB_!!6000000006427-2-tps-96-96.png\", \"text\": \"找同款\", \"url\": \"https://pages.tmall.com/wow/go/mx-basic/trade/image_search_list?disableNav=YES&pageSource=detailFloat&sourceItemId=640075506865&sourceSkuId=&ISImageUrl=https%3A%2F%2Fimg.alicdn.com%2Fimgextra%2Fi2%2F2682270869%2FO1CN019n1omT1II37ZuvTBS_%21%212-item_pic.png\"}]}, \"liveId\": null, \"version\": \"11\", \"events\": {\"exposureItem\": [{\"fields\": {\"page\": \"Page_Detail3\", \"eventId\": \"2201\", \"arg1\": \"Page_Detail3_Show_picSearch\", \"args\": {\"spm\": \"a1z60.21142780.floatView.picSearch\", \"type\": \"picSearch\"}}, \"type\": \"userTrack\"}], \"click\": [{\"fields\": {\"page\": \"Page_Detail3\", \"eventId\": \"2101\", \"arg1\": \"Page_Detail3_Button_picSearch\", \"args\": {\"spm\": \"a1z60.21142780.floatView.picSearch\", \"type\": \"picSearch\"}}, \"type\": \"userTrack\"}, {\"fields\": {\"url\": \"https://pages.tmall.com/wow/go/mx-basic/trade/image_search_list?disableNav=YES&pageSource=detailFloat&sourceItemId=640075506865&sourceSkuId=&ISImageUrl=https%3A%2F%2Fimg.alicdn.com%2Fimgextra%2Fi2%2F2682270869%2FO1CN019n1omT1II37ZuvTBS_%21%212-item_pic.png\"}, \"type\": \"openUrl\"}]}, \"extraAttributes\": null, \"templateUrl\": \"https://ossgw.alicdn.com/rapid-oss-bucket/1637314576969/tm_detail_3_float_view.zip\"}], \"share\": {\"iconType\": \"1\", \"name\": \"分享\", \"params\": {}, \"url\": \"https://tmallx.tmall.com/app/tmallx-src/goods-detail-weex/goods_detail_for_b?id=640075506865&share_channel=detail\"}, \"imageTagList\": null, \"extraAttributes\": null}, \"price\": {\"price\": {\"priceTail\": \"起\", \"priceColor\": \"#FF0036\", \"priceTitle\": \"折后价\", \"priceText\": \"188\", \"priceMoney\": \"18800\"}}, \"seller\": {\"sellerId\": \"2682270869\", \"shopId\": \"148924970\", \"shopIcon\": \"\", \"userId\": \"2682270869\", \"sellerType\": \"B\", \"shopName\": \"雀巢健康科学特医食品旗舰店\", \"shopUrl\": \"tmall://page.tm/shop?item_id=640075506865&shopId=148924970\", \"evaluates3\": [{\"score\": \"4.8 \", \"level\": \"1\", \"levelText\": \"高\", \"levelBackgroundColor\": \"#EEEEEE\", \"levelTextColor\": \"#999999\", \"title\": \"宝贝描述\"}, {\"score\": \"4.8 \", \"level\": \"1\", \"levelText\": \"高\", \"levelBackgroundColor\": \"#EEEEEE\", \"levelTextColor\": \"#999999\", \"title\": \"卖家服务\"}, {\"score\": \"4.9 \", \"level\": \"1\", \"levelText\": \"高\", \"levelBackgroundColor\": \"#EEEEEE\", \"levelTextColor\": \"#999999\", \"title\": \"物流服务\"}]}, \"consumerProtection\": {\"displayService\": null, \"serviceProtection\": {\"wygService\": null, \"selfDisplayVO\": {\"name\": \"天猫基础保障\", \"id\": null, \"services\": [{\"userTrack\": {\"fields\": {\"args\": {\"serviceName\": \"退货运费险\"}, \"eventId\": \"2101\", \"page\": \"Page_Detail3\", \"arg1\": \"Page_Detail3_MaobService_Click\"}, \"type\": \"userTrack\"}, \"link\": null, \"name\": \"退货运费险\", \"subActionLink\": null, \"subActionName\": null, \"serviceId\": null, \"desc\": \"商家赠送运费险,退换货选择上门取件,自动减免首重运费;若选择自寄,参照首重标准赔付,具体以“订单详情-退货运费险”页面为准。\"}, {\"userTrack\": {\"fields\": {\"args\": {\"serviceName\": \"极速退款\"}, \"eventId\": \"2101\", \"page\": \"Page_Detail3\", \"arg1\": \"Page_Detail3_MaobService_Click\"}, \"type\": \"userTrack\"}, \"link\": null, \"name\": \"极速退款\", \"subActionLink\": null, \"subActionName\": null, \"serviceId\": null, \"desc\": \"满足相应条件时,诚信用户在退货寄出后,享受极速退款到账\"}, {\"userTrack\": {\"fields\": {\"args\": {\"serviceName\": \"7天无理由退换\"}, \"eventId\": \"2101\", \"page\": \"Page_Detail3\", \"arg1\": \"Page_Detail3_MaobService_Click\"}, \"type\": \"userTrack\"}, \"link\": null, \"name\": \"7天无理由退换\", \"subActionLink\": null, \"subActionName\": null, \"serviceId\": null, \"desc\": \"满足相应条件(密封包装拆封后不支持)时,消费者可申请 “7天无理由退换货”\"}]}, \"basicService\": {\"wyg\": null, \"icon\": null, \"link\": null, \"name\": null, \"alias\": null, \"description\": null, \"id\": null, \"services\": [{\"serviceFee\": null, \"license\": null, \"icon\": \"//img.alicdn.com/tfs/TB1_YjSjeL2gK0jSZPhXXahvXXa-54-54.png\", \"link\": null, \"name\": \"退货运费险\", \"priority\": \"0\", \"serviceId\": null, \"desc\": [\"商家赠送运费险,退换货选择上门取件,自动减免首重运费;若选择自寄,参照首重标准赔付,具体以“订单详情-退货运费险”页面为准。\"]}, {\"serviceFee\": null, \"license\": null, \"icon\": \"//img.alicdn.com/tfs/TB1_YjSjeL2gK0jSZPhXXahvXXa-54-54.png\", \"link\": null, \"name\": \"极速退款\", \"priority\": \"0\", \"serviceId\": null, \"desc\": [\"满足相应条件时,诚信用户在退货寄出后,享受极速退款到账\"]}, {\"serviceFee\": null, \"license\": null, \"icon\": \"//img.alicdn.com/tfs/TB1_YjSjeL2gK0jSZPhXXahvXXa-54-54.png\", \"link\": null, \"name\": \"7天无理由退换\", \"priority\": \"0\", \"serviceId\": null, \"desc\": [\"满足相应条件(密封包装拆封后不支持)时,消费者可申请 “7天无理由退换货”\"]}], \"desc\": null}}, \"params\": null, \"items\": null}, \"priceSectionData\": {\"promotion\": {\"entranceTip\": \"查看\", \"items\": [{\"textColor\": \"#FD5F20\", \"content\": \"购买得积分\"}, {\"textColor\": \"#FD5F20\", \"content\": \"淘金币可抵6.60元起\"}, {\"textColor\": \"#FD5F20\", \"content\": \"满440减65\"}]}, \"price\": {\"mainBelt\": null, \"price\": {\"priceTail\": \"起\", \"priceDescColor\": null, \"priceColor\": \"#FF0036\", \"priceTitle\": \"折后价\", \"priceDescText\": null, \"priceDescBgColor\": null, \"priceDescPrice\": null, \"priceText\": \"188\", \"priceDesc\": \"已优惠¥32\", \"priceMoney\": \"18800\"}, \"priceType\": null, \"promotionContent\": {\"operate\": \"查看\", \"couponInfo\": \"淘金币可抵6.60元起 | 满440减65\", \"operateColor\": \"#FF0036\", \"couponColor\": \"#FF0036\"}, \"fields\": null, \"events\": {\"exposureItem\": [{\"fields\": {\"page\": \"Page_Detail3\", \"eventId\": \"2201\", \"arg1\": \"Page_Detail3_Show-Price\", \"args\": {\"spm\": \"a1z60.21142780.price\", \"MarketText\": \"下单可得猫猫币,每月第3单必得99币\", \"item_id\": \"640075506865\", \"visitor_id\": \"0\", \"tag\": \"detail\", \"cur_coupon_price\": \"18800\", \"extArgs\": \"{\\"redSet\\":\\"\\",\\"regionNoStock\\":\\"0\\",\\"regionNotSale\\":\\"0\\",\\"preSale\\":\\"0\\",\\"memberLevel\\":\\"0\\"}\", \"priceCheckSkuId\": \"5421069106310\", \"timestamp\": \"1711331589262\"}}, \"type\": \"userTrack\"}], \"sameGoodsClick\": [{\"fields\": {\"page\": \"Page_Detail3\", \"eventId\": \"2101\", \"arg1\": \"Page_Detail3_floor.sameGoods\", \"args\": {\"spm\": \"a1z60.21142780.floor.sameGoods\", \"floorId\": \"info_sameGoods\"}}, \"type\": \"userTrack\"}, {\"fields\": {\"floorId\": \"info_sameGoods\"}, \"type\": \"openFloor\"}], \"itemClick1\": [{\"fields\": {\"params\": {\"needLogin\": \"true\"}, \"url\": \"https://market.m.taobao.com/app/detail-project/detail-pages/pages/quan2020?wh_weex=true&marketcoupon=true\"}, \"type\": \"openFloatDialog\"}, {\"fields\": {\"page\": \"Page_Detail3\", \"eventId\": \"2101\", \"arg1\": \"Page_Detail3_CapsuleClick\", \"args\": {\"spm\": \"a1z60.21142780.CapsuleClick\"}}, \"type\": \"userTrack\"}], \"sameGoodsShow\": [{\"fields\": {\"page\": null, \"eventId\": \"2201\", \"arg1\": \"Page_Detail3_floor.sameGoods\", \"args\": {\"spm\": \"a1z60.21142780.floor.sameGoods\", \"type\": \"userTrack\", \"floorId\": \"info_sameGoods\"}}, \"type\": \"userTrack\"}], \"itemClick\": [{\"fields\": {\"params\": {\"needLogin\": \"true\"}, \"url\": \"https://market.m.taobao.com/app/detail-project/detail-pages/pages/quan2020?wh_weex=true&marketcoupon=true\"}, \"type\": \"openFloatDialog\"}, {\"fields\": {\"page\": \"Page_Detail3\", \"eventId\": \"2101\", \"arg1\": \"Page_Detail3_Button_RightsClick\", \"args\": {\"spm\": \"a1z60.21142780.RightButton\"}}, \"type\": \"userTrack\"}]}, \"extraAttributes\": null, \"promotion\": null, \"status\": \"NORMAL\"}}, \"skuCore\": {\"skuItem\": {\"buttonText\": null, \"hideQuantity\": \"false\", \"skuFromTaoSugar\": \"false\", \"unitBuy\": null, \"showAddress\": \"true\", \"buttonIcon\": null, \"recommendSize\": null, \"extraProm\": null, \"recommendTip\": null, \"selectedSkuId\": \"5421069106310\", \"location\": \"中国\", \"skuH5Url\": null, \"skuId\": null}, \"relatedItems\": null, \"sku2info\": {\"0\": {\"quantity\": \"38\", \"logisticsTime\": null, \"quantityText\": \"有货\", \"price\": {\"priceText\": \"253.0\", \"priceMoney\": \"25300\"}, \"subPrice\": {\"priceTitle\": \"起 折后价\", \"priceText\": \"188\", \"priceMoney\": \"18800\"}}, \"5421069106312\": {\"quantity\": \"4\", \"logisticsTime\": \"现在付款,预计24小时内发货\", \"quantityText\": \"库存紧张\", \"price\": {\"priceText\": \"798.0\", \"priceMoney\": \"79800\"}, \"subPrice\": {\"priceTitle\": \"折后价\", \"priceText\": \"733\", \"priceMoney\": \"73300\"}}, \"5421069106309\": {\"quantity\": \"4\", \"logisticsTime\": \"现在付款,预计24小时内发货\", \"quantityText\": \"库存紧张\", \"price\": {\"priceText\": \"628.0\", \"priceMoney\": \"62800\"}, \"subPrice\": {\"priceTitle\": \"折后价\", \"priceText\": \"563\", \"priceMoney\": \"56300\"}}, \"5421069106310\": {\"quantity\": \"11\", \"logisticsTime\": \"现在付款,预计24小时内发货\", \"quantityText\": \"有货\", \"price\": {\"priceText\": \"253.0\", \"priceMoney\": \"25300\"}, \"subPrice\": {\"priceTitle\": \"折后价\", \"priceText\": \"188\", \"priceMoney\": \"18800\"}}, \"5421069106311\": {\"quantity\": \"13\", \"logisticsTime\": \"现在付款,预计24小时内发货\", \"quantityText\": \"有货\", \"price\": {\"priceText\": \"440.0\", \"priceMoney\": \"44000\"}, \"subPrice\": {\"priceTitle\": \"折后价\", \"priceText\": \"375\", \"priceMoney\": \"37500\"}}, \"5421069106308\": {\"quantity\": \"6\", \"logisticsTime\": \"现在付款,预计24小时内发货\", \"quantityText\": \"库存紧张\", \"price\": {\"priceText\": \"1165.0\", \"priceMoney\": \"116500\"}, \"subPrice\": {\"priceTitle\": \"折后价\", \"priceText\": \"1100\", \"priceMoney\": \"110000\"}}}, \"skuBuy\": {\"skuPattern\": null, \"storeOn\": \"false\", \"buyBenefit\": null, \"success\": \"false\", \"old4NewBuyPattern\": \"false\", \"pattern\": null, \"buyPattern\": null, \"appointment\": null, \"card\": null}}, \"skuBase\": {\"firstSkuProperty\": {\"values\": [{\"colorSeriesId\": null, \"image\": \"http://img.alicdn.com/imgextra/i1/2682270869/O1CN01DSqr2B1II34YzECVi_!!2682270869.jpg\", \"skuV3PlatformStatText\": null, \"colorMaterialImg\": null, \"colorMaterial\": null, \"cornerIcon\": null, \"colorHotNew\": null, \"colorSeries\": null, \"colorMaterialId\": null, \"cornerText\": null, \"tagHighlight\": null, \"vid\": \"30532579892\", \"skuV3Price\": null, \"sortOrder\": null, \"name\": \"香草味400g*1罐【7天量】\", \"colorValue\": null, \"tag\": null, \"desc\": null}, {\"colorSeriesId\": null, \"image\": \"http://img.alicdn.com/imgextra/i3/2682270869/O1CN01IWnlmq1II36DEAnCN_!!2682270869.jpg\", \"skuV3PlatformStatText\": null, \"colorMaterialImg\": null, \"colorMaterial\": null, \"cornerIcon\": null, \"colorHotNew\": null, \"colorSeries\": null, \"colorMaterialId\": null, \"cornerText\": null, \"tagHighlight\": null, \"vid\": \"30532579893\", \"skuV3Price\": null, \"sortOrder\": null, \"name\": \"香草味400g*2罐【14天量】\", \"colorValue\": null, \"tag\": null, \"desc\": null}, {\"colorSeriesId\": null, \"image\": \"http://img.alicdn.com/imgextra/i2/2682270869/O1CN017PusSj1II369dAF9w_!!2682270869.jpg\", \"skuV3PlatformStatText\": null, \"colorMaterialImg\": null, \"colorMaterial\": null, \"cornerIcon\": null, \"colorHotNew\": null, \"colorSeries\": null, \"colorMaterialId\": null, \"cornerText\": null, \"tagHighlight\": null, \"vid\": \"30532579894\", \"skuV3Price\": null, \"sortOrder\": null, \"name\": \"香草味400g*3罐【21天量】\", \"colorValue\": null, \"tag\": null, \"desc\": null}, {\"colorSeriesId\": null, \"image\": \"http://img.alicdn.com/imgextra/i2/2682270869/O1CN01HdydZx1II2xTnGWVe_!!2682270869.jpg\", \"skuV3PlatformStatText\": null, \"colorMaterialImg\": null, \"colorMaterial\": null, \"cornerIcon\": null, \"colorHotNew\": null, \"colorSeries\": null, \"colorMaterialId\": null, \"cornerText\": null, \"tagHighlight\": null, \"vid\": \"30532579895\", \"skuV3Price\": null, \"sortOrder\": null, \"name\": \"香草味400g*4罐【28天量】\", \"colorValue\": null, \"tag\": null, \"desc\": null}, {\"colorSeriesId\": null, \"image\": \"http://img.alicdn.com/imgextra/i2/2682270869/O1CN01Dk1j5b1II2xVjMP3L_!!2682270869.jpg\", \"skuV3PlatformStatText\": null, \"colorMaterialImg\": null, \"colorMaterial\": null, \"cornerIcon\": null, \"colorHotNew\": null, \"colorSeries\": null, \"colorMaterialId\": null, \"cornerText\": null, \"tagHighlight\": null, \"vid\": \"30532579896\", \"skuV3Price\": null, \"sortOrder\": null, \"name\": \"香草味400g*6罐【42天量】\", \"colorValue\": null, \"tag\": null, \"desc\": null}], \"name\": \"颜色分类\", \"pid\": \"1627207\"}, \"propAddedInfo\": null, \"components\": null, \"skus\": [{\"itemId\": null, \"images\": null, \"propPath\": \"1627207:30532579892\", \"selected\": null, \"skuId\": \"5421069106310\"}, {\"itemId\": null, \"images\": null, \"propPath\": \"1627207:30532579893\", \"selected\": null, \"skuId\": \"5421069106311\"}, {\"itemId\": null, \"images\": null, \"propPath\": \"1627207:30532579894\", \"selected\": null, \"skuId\": \"5421069106309\"}, {\"itemId\": null, \"images\": null, \"propPath\": \"1627207:30532579895\", \"selected\": null, \"skuId\": \"5421069106312\"}, {\"itemId\": null, \"images\": null, \"propPath\": \"1627207:30532579896\", \"selected\": null, \"skuId\": \"5421069106308\"}], \"macWeexUrl\": null, \"extInfo\": \"共5款颜色分类\", \"props\": [{\"values\": [{\"colorSeriesId\": null, \"image\": \"http://img.alicdn.com/imgextra/i1/2682270869/O1CN01DSqr2B1II34YzECVi_!!2682270869.jpg\", \"skuV3PlatformStatText\": null, \"colorMaterialImg\": null, \"colorMaterial\": null, \"cornerIcon\": null, \"colorHotNew\": null, \"colorSeries\": null, \"colorMaterialId\": null, \"cornerText\": null, \"tagHighlight\": null, \"vid\": \"30532579892\", \"skuV3Price\": null, \"sortOrder\": null, \"name\": \"香草味400g*1罐【7天量】\", \"colorValue\": null, \"tag\": null, \"desc\": null}, {\"colorSeriesId\": null, \"image\": \"http://img.alicdn.com/imgextra/i3/2682270869/O1CN01IWnlmq1II36DEAnCN_!!2682270869.jpg\", \"skuV3PlatformStatText\": null, \"colorMaterialImg\": null, \"colorMaterial\": null, \"cornerIcon\": null, \"colorHotNew\": null, \"colorSeries\": null, \"colorMaterialId\": null, \"cornerText\": null, \"tagHighlight\": null, \"vid\": \"30532579893\", \"skuV3Price\": null, \"sortOrder\": null, \"name\": \"香草味400g*2罐【14天量】\", \"colorValue\": null, \"tag\": null, \"desc\": null}, {\"colorSeriesId\": null, \"image\": \"http://img.alicdn.com/imgextra/i2/2682270869/O1CN017PusSj1II369dAF9w_!!2682270869.jpg\", \"skuV3PlatformStatText\": null, \"colorMaterialImg\": null, \"colorMaterial\": null, \"cornerIcon\": null, \"colorHotNew\": null, \"colorSeries\": null, \"colorMaterialId\": null, \"cornerText\": null, \"tagHighlight\": null, \"vid\": \"30532579894\", \"skuV3Price\": null, \"sortOrder\": null, \"name\": \"香草味400g*3罐【21天量】\", \"colorValue\": null, \"tag\": null, \"desc\": null}, {\"colorSeriesId\": null, \"image\": \"http://img.alicdn.com/imgextra/i2/2682270869/O1CN01HdydZx1II2xTnGWVe_!!2682270869.jpg\", \"skuV3PlatformStatText\": null, \"colorMaterialImg\": null, \"colorMaterial\": null, \"cornerIcon\": null, \"colorHotNew\": null, \"colorSeries\": null, \"colorMaterialId\": null, \"cornerText\": null, \"tagHighlight\": null, \"vid\": \"30532579895\", \"skuV3Price\": null, \"sortOrder\": null, \"name\": \"香草味400g*4罐【28天量】\", \"colorValue\": null, \"tag\": null, \"desc\": null}, {\"colorSeriesId\": null, \"image\": \"http://img.alicdn.com/imgextra/i2/2682270869/O1CN01Dk1j5b1II2xVjMP3L_!!2682270869.jpg\", \"skuV3PlatformStatText\": null, \"colorMaterialImg\": null, \"colorMaterial\": null, \"cornerIcon\": null, \"colorHotNew\": null, \"colorSeries\": null, \"colorMaterialId\": null, \"cornerText\": null, \"tagHighlight\": null, \"vid\": \"30532579896\", \"skuV3Price\": null, \"sortOrder\": null, \"name\": \"香草味400g*6罐【42天量】\", \"colorValue\": null, \"tag\": null, \"desc\": null}], \"name\": \"颜色分类\", \"pid\": \"1627207\"}]}}"
                }
            ],
            "debug": {
                "app": "appDetail",
                "cachedTimestamp": "2024-03-25 09:53:09",
                "host": "detailcache033018144038.unsh.ea119@33.18.144.38",
                "dataFrom": "service"
            },
            "feature": {
                "hasSku": "true",
                "beltVersion": "UNIFY",
                "showSku": "true",
                "degradeNewTrade": "true",
                "isSkuOnebuy": "false",
                "newAddress": "true",
                "picSearchSimilar": "true"
            },
            "item": {
                "videos": [
                    {
                        "videoThumbnailURL": "https://img.alicdn.com/imgextra/i1/2682270869/O1CN01JXJdo71II37TNdk6G_!!2682270869.png",
                        "interactiveInfo": {
                            "userId": "2682270869",
                            "interactiveId": "2554399393"
                        },
                        "contentId": null,
                        "weexRecommendUrl": "https://market.m.taobao.com/apps/market/detailrax/recommend-items.html?spm=a2116h.app.0.0.16d957e9U2bxVj&wh_weex=true&itemId=640075506865",
                        "videoId": "443576479884",
                        "anchors": null,
                        "spatialVideoDimension": "3:4",
                        "type": "3",
                        "url": "https://cloud.video.taobao.com/play/u/2682270869/p/2/e/6/t/1/443576479884.mp4?appKey=38829",
                        "structImage": null
                    }
                ],
                "title": "雀巢佳膳悠选特医全营养配方粉含蛋白质肠内营养粉代餐中老年400g",
                "showSku": "true",
                "spatialDimension": "3:4",
                "h5moduleDescUrl": "//market.m.taobao.com/app/detail-project/desc/index.html?id=640075506865&descVersion=7.0&type=0&f=desc/icoss!0640075506865!1674998359&sellerType=B",
                "skuH5Url": null,
                "skuImages": [
                    {
                        "skuName": "香草味400g*1罐【7天量】",
                        "skuProp": "1627207:30532579892",
                        "skuImage": "https://img.alicdn.com/imgextra/i1/2682270869/O1CN01DSqr2B1II34YzECVi_!!2682270869.jpg"
                    },
                    {
                        "skuName": "香草味400g*2罐【14天量】",
                        "skuProp": "1627207:30532579893",
                        "skuImage": "https://img.alicdn.com/imgextra/i3/2682270869/O1CN01IWnlmq1II36DEAnCN_!!2682270869.jpg"
                    },
                    {
                        "skuName": "香草味400g*3罐【21天量】",
                        "skuProp": "1627207:30532579894",
                        "skuImage": "https://img.alicdn.com/imgextra/i2/2682270869/O1CN017PusSj1II369dAF9w_!!2682270869.jpg"
                    },
                    {
                        "skuName": "香草味400g*4罐【28天量】",
                        "skuProp": "1627207:30532579895",
                        "skuImage": "https://img.alicdn.com/imgextra/i2/2682270869/O1CN01HdydZx1II2xTnGWVe_!!2682270869.jpg"
                    },
                    {
                        "skuName": "香草味400g*6罐【42天量】",
                        "skuProp": "1627207:30532579896",
                        "skuImage": "https://img.alicdn.com/imgextra/i2/2682270869/O1CN01Dk1j5b1II2xVjMP3L_!!2682270869.jpg"
                    }
                ],
                "images": [
                    "https://img.alicdn.com/imgextra/i2/2682270869/O1CN019n1omT1II37ZuvTBS_!!2-item_pic.png",
                    "https://img.alicdn.com/imgextra/i4/2682270869/O1CN01alRYZc1II33zZsCKi_!!2682270869.jpg",
                    "https://img.alicdn.com/imgextra/i3/2682270869/O1CN01joAkWr1II33yQfZTK_!!2682270869.jpg",
                    "https://img.alicdn.com/imgextra/i2/2682270869/O1CN01bocTzI1II33xIB6vZ_!!2682270869.jpg",
                    "https://img.alicdn.com/imgextra/i3/2682270869/O1CN01MWg00q1II33xPQJLH_!!2682270869.jpg"
                ],
                "moduleDescUrl": "//hws.m.taobao.com/d/modulet/v5/WItemMouldDesc.do?id=640075506865&f=icoss!0640075506865!1674998359",
                "tmallDescUrl": "//market.m.taobao.com/app/detail-project/desc/index.html?id=640075506865&descVersion=7.0&type=0&f=desc/icoss!0640075506865!1674998359&sellerType=B",
                "hasSku": "true",
                "rootCategoryId": "50026800",
                "imageSearchUrl": "tmall://page.tm/imageSearchResult?isNew=true",
                "itemId": "640075506865",
                "skuText": "请选择 颜色分类 ",
                "moduleDescParams": {
                    "f": "desc/icoss!0640075506865!1674998359",
                    "id": "640075506865"
                },
                "subtitle": "成人营养配方粉 补充优质蛋白",
                "sellCount": "1000+",
                "spuId": "6641417992",
                "categoryId": "125088021"
            },
            "params": {
                "abParams": null,
                "trackParams": {
                    "itemId": "640075506865",
                    "shop_id": "148924970",
                    "spm": "",
                    "native_detail_v": "3.0",
                    "bc_type": "B",
                    "scm": "",
                    "categoryId": "125088021",
                    "seller_id": "2682270869",
                    "brand_id": "6389013771"
                }
            },
            "props": {
                "groupProps": [
                    {
                        "基本信息": [
                            {
                                "品牌": "Nestle Health Science/雀巢健康科学 "
                            },
                            {
                                "系列": "佳膳悠选 "
                            },
                            {
                                "产地": "瑞士 "
                            },
                            {
                                "适用性别": "男女通用 "
                            },
                            {
                                "颜色分类": "香草味400g*1罐【7天量】 香草味400g*2罐【14天量】 香草味400g*3罐【21天量】 香草味400g*4罐【28天量】 香草味400g*6罐【42天量】 "
                            },
                            {
                                "保质期": "24个月 "
                            },
                            {
                                "生产企业": "雀巢瑞士有限公司 "
                            },
                            {
                                "产品剂型": "冲剂 "
                            },
                            {
                                "规格(粒/袋/ml/g)": "400g/1罐 "
                            },
                            {
                                "计价单位": "罐 "
                            },
                            {
                                "适用人群": "成人 "
                            },
                            {
                                "是否保健食品(国食健字号)": "否 "
                            }
                        ]
                    }
                ]
            },
            "props2": [
    
            ],
            "propsCut": "品牌 系列 产地 适用性别 颜色分类 保质期 生产企业 产品剂型 规格(粒/袋/ml/g) 计价单位 适用人群 是否保健食品(国食健字号)",
            "rate": {
                "invite": {
                    "inviteText": "",
                    "showInvite": "false"
                },
                "keywords": [
    
                ],
                "rateList": [
    
                ]
            },
            "resource": {
                "entrances": {
                    "askAll": {
                        "text": "对宝贝有疑问?可以向已买的人求助"
                    }
                }
            },
            "seller": {
                "sellerNick": "雀***店",
                "shopDesc": null,
                "newItemCount": null,
                "shopCard": "本店共121件宝贝在热卖",
                "shopIcon": "//img.alicdn.com/imgextra//ad/f6/TB14RmlhqmgSKJjSsphSuwy1VXa.jpg",
                "shopName": "雀巢健康科学特医食品旗舰店",
                "certIcon": null,
                "shopUrl": "tmall://page.tm/shop?item_id=640075506865&shopId=148924970",
                "certText": null,
                "userId": "2682270869",
                "certification": null,
                "fans": null,
                "showShopLinkIcon": "false",
                "shopBrand": null,
                "creditLevel": "13",
                "shopDescIcon": {
                    "bgColor": "#fa1e36",
                    "text": "旗舰",
                    "textColor": "#ffffff"
                },
                "allItemCount": "121",
                "creditLevelIcon": "//gw.alicdn.com/tfs/TB1Bw2CixrI8KJjy0FpXXb5hVXa-132-24.png",
                "shopDsr": {
                    "goodRatePercentage": "100.00%",
                    "averageProductScoreSixmonth": "4.8",
                    "deliveryText": "物流服务",
                    "deliveryAvgScore": "4.9 ",
                    "productText": "宝贝描述",
                    "serviceLevel": "1",
                    "serviceText": "卖家服务",
                    "deliveryLevel": "1",
                    "score": "0",
                    "creditId": null,
                    "creditFlag": null,
                    "productLevel": "1",
                    "averageServiceScoreSixmonth": "4.8",
                    "averageDeliveryScoreSixmonth": "4.9",
                    "serviceAvgScore": "4.8 ",
                    "productAvgScore": "4.8 ",
                    "shopAge": "-1"
                },
                "shopSign": "https://img.alicdn.com/imgextra/i2/2682270869/O1CN016KYsJX1II32Y6e6sL_!!2682270869.jpg",
                "shopId": "148924970",
                "shopType": "B",
                "sellerType": "B"
            },
            "skuBase": {
                "firstSkuProperty": {
                    "values": [
                        {
                            "colorSeriesId": null,
                            "image": "http://img.alicdn.com/imgextra/i1/2682270869/O1CN01DSqr2B1II34YzECVi_!!2682270869.jpg",
                            "skuV3PlatformStatText": null,
                            "colorMaterialImg": null,
                            "colorMaterial": null,
                            "cornerIcon": null,
                            "colorHotNew": null,
                            "colorSeries": null,
                            "colorMaterialId": null,
                            "cornerText": null,
                            "tagHighlight": null,
                            "vid": "30532579892",
                            "skuV3Price": null,
                            "sortOrder": null,
                            "name": "香草味400g*1罐【7天量】",
                            "colorValue": null,
                            "tag": null,
                            "desc": null
                        },
                        {
                            "colorSeriesId": null,
                            "image": "http://img.alicdn.com/imgextra/i3/2682270869/O1CN01IWnlmq1II36DEAnCN_!!2682270869.jpg",
                            "skuV3PlatformStatText": null,
                            "colorMaterialImg": null,
                            "colorMaterial": null,
                            "cornerIcon": null,
                            "colorHotNew": null,
                            "colorSeries": null,
                            "colorMaterialId": null,
                            "cornerText": null,
                            "tagHighlight": null,
                            "vid": "30532579893",
                            "skuV3Price": null,
                            "sortOrder": null,
                            "name": "香草味400g*2罐【14天量】",
                            "colorValue": null,
                            "tag": null,
                            "desc": null
                        },
                        {
                            "colorSeriesId": null,
                            "image": "http://img.alicdn.com/imgextra/i2/2682270869/O1CN017PusSj1II369dAF9w_!!2682270869.jpg",
                            "skuV3PlatformStatText": null,
                            "colorMaterialImg": null,
                            "colorMaterial": null,
                            "cornerIcon": null,
                            "colorHotNew": null,
                            "colorSeries": null,
                            "colorMaterialId": null,
                            "cornerText": null,
                            "tagHighlight": null,
                            "vid": "30532579894",
                            "skuV3Price": null,
                            "sortOrder": null,
                            "name": "香草味400g*3罐【21天量】",
                            "colorValue": null,
                            "tag": null,
                            "desc": null
                        },
                        {
                            "colorSeriesId": null,
                            "image": "http://img.alicdn.com/imgextra/i2/2682270869/O1CN01HdydZx1II2xTnGWVe_!!2682270869.jpg",
                            "skuV3PlatformStatText": null,
                            "colorMaterialImg": null,
                            "colorMaterial": null,
                            "cornerIcon": null,
                            "colorHotNew": null,
                            "colorSeries": null,
                            "colorMaterialId": null,
                            "cornerText": null,
                            "tagHighlight": null,
                            "vid": "30532579895",
                            "skuV3Price": null,
                            "sortOrder": null,
                            "name": "香草味400g*4罐【28天量】",
                            "colorValue": null,
                            "tag": null,
                            "desc": null
                        },
                        {
                            "colorSeriesId": null,
                            "image": "http://img.alicdn.com/imgextra/i2/2682270869/O1CN01Dk1j5b1II2xVjMP3L_!!2682270869.jpg",
                            "skuV3PlatformStatText": null,
                            "colorMaterialImg": null,
                            "colorMaterial": null,
                            "cornerIcon": null,
                            "colorHotNew": null,
                            "colorSeries": null,
                            "colorMaterialId": null,
                            "cornerText": null,
                            "tagHighlight": null,
                            "vid": "30532579896",
                            "skuV3Price": null,
                            "sortOrder": null,
                            "name": "香草味400g*6罐【42天量】",
                            "colorValue": null,
                            "tag": null,
                            "desc": null
                        }
                    ],
                    "name": "颜色分类",
                    "pid": "1627207"
                },
                "propAddedInfo": null,
                "components": null,
                "skus": [
                    {
                        "itemId": null,
                        "images": null,
                        "propPath": "1627207:30532579892",
                        "selected": null,
                        "skuId": "5421069106310"
                    },
                    {
                        "itemId": null,
                        "images": null,
                        "propPath": "1627207:30532579893",
                        "selected": null,
                        "skuId": "5421069106311"
                    },
                    {
                        "itemId": null,
                        "images": null,
                        "propPath": "1627207:30532579894",
                        "selected": null,
                        "skuId": "5421069106309"
                    },
                    {
                        "itemId": null,
                        "images": null,
                        "propPath": "1627207:30532579895",
                        "selected": null,
                        "skuId": "5421069106312"
                    },
                    {
                        "itemId": null,
                        "images": null,
                        "propPath": "1627207:30532579896",
                        "selected": null,
                        "skuId": "5421069106308"
                    }
                ],
                "macWeexUrl": null,
                "extInfo": "共5款颜色分类",
                "props": [
                    {
                        "values": [
                            {
                                "colorSeriesId": null,
                                "image": "http://img.alicdn.com/imgextra/i1/2682270869/O1CN01DSqr2B1II34YzECVi_!!2682270869.jpg",
                                "skuV3PlatformStatText": null,
                                "colorMaterialImg": null,
                                "colorMaterial": null,
                                "cornerIcon": null,
                                "colorHotNew": null,
                                "colorSeries": null,
                                "colorMaterialId": null,
                                "cornerText": null,
                                "tagHighlight": null,
                                "vid": "30532579892",
                                "skuV3Price": null,
                                "sortOrder": null,
                                "name": "香草味400g*1罐【7天量】",
                                "colorValue": null,
                                "tag": null,
                                "desc": null
                            },
                            {
                                "colorSeriesId": null,
                                "image": "http://img.alicdn.com/imgextra/i3/2682270869/O1CN01IWnlmq1II36DEAnCN_!!2682270869.jpg",
                                "skuV3PlatformStatText": null,
                                "colorMaterialImg": null,
                                "colorMaterial": null,
                                "cornerIcon": null,
                                "colorHotNew": null,
                                "colorSeries": null,
                                "colorMaterialId": null,
                                "cornerText": null,
                                "tagHighlight": null,
                                "vid": "30532579893",
                                "skuV3Price": null,
                                "sortOrder": null,
                                "name": "香草味400g*2罐【14天量】",
                                "colorValue": null,
                                "tag": null,
                                "desc": null
                            },
                            {
                                "colorSeriesId": null,
                                "image": "http://img.alicdn.com/imgextra/i2/2682270869/O1CN017PusSj1II369dAF9w_!!2682270869.jpg",
                                "skuV3PlatformStatText": null,
                                "colorMaterialImg": null,
                                "colorMaterial": null,
                                "cornerIcon": null,
                                "colorHotNew": null,
                                "colorSeries": null,
                                "colorMaterialId": null,
                                "cornerText": null,
                                "tagHighlight": null,
                                "vid": "30532579894",
                                "skuV3Price": null,
                                "sortOrder": null,
                                "name": "香草味400g*3罐【21天量】",
                                "colorValue": null,
                                "tag": null,
                                "desc": null
                            },
                            {
                                "colorSeriesId": null,
                                "image": "http://img.alicdn.com/imgextra/i2/2682270869/O1CN01HdydZx1II2xTnGWVe_!!2682270869.jpg",
                                "skuV3PlatformStatText": null,
                                "colorMaterialImg": null,
                                "colorMaterial": null,
                                "cornerIcon": null,
                                "colorHotNew": null,
                                "colorSeries": null,
                                "colorMaterialId": null,
                                "cornerText": null,
                                "tagHighlight": null,
                                "vid": "30532579895",
                                "skuV3Price": null,
                                "sortOrder": null,
                                "name": "香草味400g*4罐【28天量】",
                                "colorValue": null,
                                "tag": null,
                                "desc": null
                            },
                            {
                                "colorSeriesId": null,
                                "image": "http://img.alicdn.com/imgextra/i2/2682270869/O1CN01Dk1j5b1II2xVjMP3L_!!2682270869.jpg",
                                "skuV3PlatformStatText": null,
                                "colorMaterialImg": null,
                                "colorMaterial": null,
                                "cornerIcon": null,
                                "colorHotNew": null,
                                "colorSeries": null,
                                "colorMaterialId": null,
                                "cornerText": null,
                                "tagHighlight": null,
                                "vid": "30532579896",
                                "skuV3Price": null,
                                "sortOrder": null,
                                "name": "香草味400g*6罐【42天量】",
                                "colorValue": null,
                                "tag": null,
                                "desc": null
                            }
                        ],
                        "name": "颜色分类",
                        "pid": "1627207"
                    }
                ]
            },
            "vertical": {
                "askAll": {
                    "askText": "宝贝好不好,问问已买的人",
                    "title": "问大家"
                }
            },
            "app_ver": "4.0.1-7.0",
            "_ddf": "cdy",
            "app_ver_check": "ok",
            "format_check": "ok"
        },
        "error": "",
        "secache": "28c87a4143f0396820a895f6c53ee5b0",
        "secache_time": 1711331589,
        "secache_date": "2024-03-25 09:53:09",
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today: max:15000 all[=++];expires:2031-01-01",
        "execution_time": "3.816",
        "server_time": "Beijing/2024-03-25 09:53:09",
        "client_ip": "127.0.0.1",
        "call_args": {
            "num_iid": "640075506865"
        },
        "api_type": "taobao",
        "server_memory": "4.59MB",
        "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(微信同号)