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

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

taobao.item_get_app(Ver:4.0.5-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.5-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": {
                    "seller": {
                      "shopCard": "本店共785件宝贝在热卖",
                      "shopName": "VICTORIAS SECRET官方旗舰店",
                      "evaluates": [
                        {
                          "score": "4.8 ",
                          "tmallLevelTextColor": "#999999",
                          "level": "1",
                          "levelText": "高",
                          "levelBackgroundColor": "#EEEEEE",
                          "levelTextColor": "#999999",
                          "title": "宝贝描述",
                          "type": "desc",
                          "tmallLevelBackgroundColor": "#EEEEEE"
                        },
                        {
                          "score": "4.8 ",
                          "tmallLevelTextColor": "#999999",
                          "level": "1",
                          "levelText": "高",
                          "levelBackgroundColor": "#EEEEEE",
                          "levelTextColor": "#999999",
                          "title": "卖家服务",
                          "type": "serv",
                          "tmallLevelBackgroundColor": "#EEEEEE"
                        },
                        {
                          "score": "4.8 ",
                          "tmallLevelTextColor": "#999999",
                          "level": "1",
                          "levelText": "高",
                          "levelBackgroundColor": "#EEEEEE",
                          "levelTextColor": "#999999",
                          "title": "物流服务",
                          "type": "post",
                          "tmallLevelBackgroundColor": "#EEEEEE"
                        }
                      ],
                      "entranceList": [
                        {
                          "borderColor": "#59ffffff",
                          "backgroundColor": "#59000000",
                          "action": [
                            {
                              "params": {
                                "url": "//shop.m.taobao.com/shop/shop_index.htm?user_id=3265150369&item_id=680783982087&currentClickTime=-1"
                              },
                              "key": "open_url"
                            },
                            {
                              "params": {
                                "trackParams": {
                                  "spm": "a.2141.7631564.shoppage"
                                },
                                "trackName": "Button-NewShopcard-ShopPage"
                              },
                              "key": "user_track"
                            }
                          ],
                          "text": "进店逛逛",
                          "textColor": "#ffffff"
                        },
                        {
                          "borderColor": "#59ffffff",
                          "backgroundColor": "#59000000",
                          "action": [
                            {
                              "params": {
                                "url": "//shop.m.taobao.com/shop/shop_index.htm?user_id=3265150369&item_id=680783982087&shop_navi=allitems"
                              },
                              "key": "open_url"
                            },
                            {
                              "params": {
                                "trackParams": {
                                  "spm": "a.2141.7631564.allitem"
                                },
                                "trackName": "Button-NewShopcard-AllItem"
                              },
                              "key": "user_track"
                            }
                          ],
                          "text": "全部宝贝",
                          "textColor": "#ffffff"
                        },
                        {
                          "borderColor": "#59ffffff",
                          "backgroundColor": "#59000000",
                          "action": [
                            {
                              "params": {
                                "url": "https://shop288498688.taobao.com?weexShopTab=memberbar"
                              },
                              "key": "open_url"
                            },
                            {
                              "params": {
                                "trackParams": {
                                  "spm": "a.2141.7631564.membercenter"
                                },
                                "trackName": "Button-NewShopcard-MemberCenter"
                              },
                              "key": "user_track"
                            }
                          ],
                          "text": "会员中心",
                          "textColor": "#ffffff"
                        }
                      ],
                      "showShopLinkIcon": false,
                      "simpleShopDOStatus": "1",
                      "fbt2User": "victoriassecret官方旗舰店",
                      "taoShopUrl": "//shop.m.taobao.com/shop/shop_index.htm?user_id=3265150369&item_id=680783982087",
                      "creditLevel": "18",
                      "evaluates2": [
                        {
                          "score": "4.8 ",
                          "titleColor": "#ffffff",
                          "level": "1",
                          "scoreTextColor": "#ffffff",
                          "levelText": "高",
                          "levelTextColor": "#f0f0f0",
                          "title": "宝贝描述",
                          "type": "desc"
                        },
                        {
                          "score": "4.8 ",
                          "titleColor": "#ffffff",
                          "level": "1",
                          "scoreTextColor": "#ffffff",
                          "levelText": "高",
                          "levelTextColor": "#f0f0f0",
                          "title": "卖家服务",
                          "type": "serv"
                        },
                        {
                          "score": "4.8 ",
                          "titleColor": "#ffffff",
                          "level": "1",
                          "scoreTextColor": "#ffffff",
                          "levelText": "高",
                          "levelTextColor": "#f0f0f0",
                          "title": "物流服务",
                          "type": "post"
                        }
                      ],
                      "atmosphereMaskColor": "#59000000",
                      "allItemCount": "785",
                      "creditLevelIcon": "//gw.alicdn.com/tfs/TB1QoJUIwmTBuNjy1XbXXaMrVXa-84-36.png?getAvatar=avatar",
                      "atmosphereColor": "#ffffff",
                      "shopId": "288498688",
                      "starts": "2017-04-28 18:03:19",
                      "brandIconRatio": "7.3",
                      "sellerNick": "victoriassecret官方旗舰店",
                      "goodRatePercentage": "100.00%",
                      "shopIcon": "https://img.alicdn.com/imgextra/i1/6000000001023/O1CN01CMx5mq1JQZuc6WFag_!!6000000001023-2-shopmanager.png",
                      "shopUrl": "tmall://page.tm/shop?item_id=680783982087&shopId=288498688",
                      "userId": "3265150369",
                      "brandIcon": "//gw.alicdn.com/tfs/TB1lkPnjeH2gK0jSZFEXXcqMpXa-368-52.png?getAvatar=avatar",
                      "shopVersion": "0",
                      "fans": "505.8万",
                      "atmophereMask": true,
                      "atmosphereImg": "https://img.alicdn.com/imgextra/i2/3265150369/O1CN01seoFHm1Eb2wTzLer3_!!3265150369.png",
                      "shopType": "B",
                      "sellerType": "B",
                      "shopTextColor": "#ffffff"
                    },
                    "propsCut": "品牌 上市时间 有无钢圈 肩带样式 适用对象 是否商场同款 罩杯款式 文胸款式 款号 适用季节 搭扣排数 功能 罩杯厚度 尺码 插片 颜色分类 ",
                    "item": {
                      "images": [
                        "//img.alicdn.com/imgextra/i3/3265150369/O1CN014m9GjF1Eb38Ll3vuG_!!3265150369.jpg",
                        "//img.alicdn.com/imgextra/i2/3265150369/O1CN01I8fHQQ1Eb37Ex9Byy_!!3265150369.jpg",
                        "//img.alicdn.com/imgextra/i4/3265150369/O1CN01UnruD11Eb36FtR7hl_!!3265150369.jpg",
                        "//img.alicdn.com/imgextra/i1/3265150369/O1CN01NBiAe41Eb370WSolE_!!3265150369.jpg",
                        "//img.alicdn.com/imgextra/i3/3265150369/O1CN01tTHFiA1Eb2xHy10DJ_!!3265150369.jpg"
                      ],
                      "tmallDescUrl": "//mdetail.tmall.com/templates/pages/desc?id=680783982087",
                      "moduleDescUrl": "http://hws.m.taobao.com/d/modulet/v5/WItemMouldDesc.do?id=680783982087&f=icoss!0680783982087!1269386069",
                      "favcount": "97134",
                      "countMultiple": [],
                      "cartUrl": "https://h5.m.taobao.com/awp/base/cart.htm",
                      "h5ItemUrl": "https://new.m.taobao.com/detail.htm?id=680783982087&hybrid=true",
                      "exParams": [],
                      "title": "维密 杨幂同款反重力MAX软支撑胸大显小无钢圈无痕凉感文胸内衣女",
                      "openDecoration": false,
                      "rootCategoryId": "1625",
                      "commentCount": "10000",
                      "itemId": "680783982087",
                      "skuText": "请选择颜色分类 尺码 ",
                      "moduleDescParams": {
                        "f": "desc/icoss!0680783982087!1269386069",
                        "id": "680783982087"
                      },
                      "brandValueId": "4540752",
                      "subtitle": "大胸显小,轻松反重力",
                      "pcADescUrl": "http://market.m.taobao.com/app/detail-project/desc/index.html?id=680783982087&descVersion=7.0&type=1&f=icoss!0680783982087!13319002441&sellerType=B",
                      "taobaoDescUrl": "http://market.m.taobao.com/app/detail-project/desc/index.html?id=680783982087&descVersion=7.0&type=0&f=desc/icoss!0680783982087!1269386069&sellerType=B",
                      "h5moduleDescUrl": "//mdetail.tmall.com/templates/pages/itemDesc?id=680783982087",
                      "taobaoPcDescUrl": "http://market.m.taobao.com/app/detail-project/desc/index.html?id=680783982087&descVersion=6.0&type=1&f=icoss!0680783982087!13319002441&sellerType=B",
                      "categoryId": "50008881"
                    },
                    "debug": {
                      "app": "alidetail",
                      "host": "detail033040090030.unsh.ea119@33.40.90.30"
                    },
                    "resource": {
                      "entrances": {
                        "askAll": {
                          "icon": "https://img.alicdn.com/tps/TB1tVU6PpXXXXXFaXXXXXXXXXXX-102-60.png",
                          "link": "https://web.m.taobao.com/app/mtb/ask-everyone/list?pha=true&disableNav=YES&refId=680783982087",
                          "text": "\"容易松吗,买了一个焦内一个月就松的没法穿了\""
                        }
                      }
                    },
                    "vertical": {
                      "askAll": {
                        "showNum": "2",
                        "askIcon": "https://img.alicdn.com/tps/TB1tVU6PpXXXXXFaXXXXXXXXXXX-102-60.png",
                        "askText": "容易松吗,买了一个焦内一个月就松的没法穿了",
                        "modelList": [
                          {
                            "askText": "容易松吗,买了一个焦内一个月就松的没法穿了",
                            "answerCountText": "9个回答",
                            "firstAnswer": "跟其他比还好"
                          },
                          {
                            "askText": "姐姐们 我想知道大熊聚拢怎么样,会不会外扩,形怎么样",
                            "answerCountText": "7个回答",
                            "firstAnswer": "不会,大胸显小"
                          }
                        ],
                        "answerText": "跟其他比还好",
                        "questNum": "657",
                        "linkUrl": "https://web.m.taobao.com/app/mtb/ask-everyone/list?pha=true&disableNav=YES&refId=680783982087",
                        "model4XList": [
                          {
                            "askIcon": "//gw.alicdn.com/tfs/TB1lneilZLJ8KJjy0FnXXcFDpXa-36-36.png",
                            "askText": "容易松吗,买了一个焦内一个月就松的没法穿了",
                            "askTextColor": "#162B36",
                            "answerCountText": "9个回答"
                          },
                          {
                            "askIcon": "//gw.alicdn.com/tfs/TB1lneilZLJ8KJjy0FnXXcFDpXa-36-36.png",
                            "askText": "姐姐们 我想知道大熊聚拢怎么样,会不会外扩,形怎么样",
                            "askTextColor": "#162B36",
                            "answerCountText": "7个回答"
                          }
                        ],
                        "title": "问大家(657)",
                        "answerIcon": "https://img.alicdn.com/tps/TB1Z7c2LXXXXXXmaXXXXXXXXXXX-132-42.png"
                      }
                    },
                    "params": {
                      "trackParams": {
                        "brandId": "4540752",
                        "BC_type": "B",
                        "categoryId": "50008881"
                      }
                    },
                    "props": {
                      "groupProps": [
                        {
                          "基本信息": [
                            {
                              "品牌": "VICTORIA’S SECRET/维多利亚的秘密"
                            },
                            {
                              "上市时间": "2023年秋季"
                            },
                            {
                              "有无钢圈": "无"
                            },
                            {
                              "肩带样式": "固定双肩带"
                            },
                            {
                              "适用对象": "青年女性"
                            },
                            {
                              "是否商场同款": "是"
                            },
                            {
                              "罩杯款式": "背心"
                            },
                            {
                              "文胸款式": "背心式"
                            },
                            {
                              "款号": "1214343/11244757"
                            },
                            {
                              "适用季节": "四季通用"
                            },
                            {
                              "搭扣排数": "后三排搭扣"
                            },
                            {
                              "功能": "大胸显小"
                            },
                            {
                              "罩杯厚度": "薄模杯"
                            },
                            {
                              "尺码": "XL L SDD MDD"
                            },
                            {
                              "插片": "无插片"
                            },
                            {
                              "颜色分类": "54A2黑曜石 - 光面花纹 3MQ4粉色 - 光面花纹 57S9丁香紫-光面花纹 4X0K海军蓝 - 光面花纹 3XY0裸色 - 光面花纹 4SUA烟紫灰 - 光面花纹 85S0香芋粉 - 光面花纹 94B9薄荷绿 - 光面花纹 11T1樱花粉 - 光面花纹 86Q4红色 - 光面花纹 75S6嫩粉色 - 光面花纹 5ZP0晨雾紫 - 光面花纹 4SLS香草白 - 光面花纹 2Y3B墨绿色-光面花纹 48PF浅水蓝 - 光面花纹 5RTC紫豹纹-光面花纹 08K8橄榄绿-光面花纹 75Q6深棕色-光面花纹 94B9浅绿色-Logo蕾丝 30QS浅灰色 - Logo蕾丝 86S7活力粉 - Logo蕾丝 85S0香芋粉-Logo蕾丝 48PF浅蓝色 - Logo蕾丝 39H7奶黄色 - Logo蕾丝 20PK深灰色-Logo蕾丝 21P1薰衣草紫 - 光面花纹"
                            }
                          ]
                        }
                      ]
                    },
                    "mockData": "{\"delivery\":{},\"trade\":{\"buyEnable\":true,\"cartEnable\":true},\"feature\":{\"hasSku\":true,\"showSku\":true},\"price\":{\"price\":{\"priceText\":\"428.00\"}},\"skuCore\":{\"sku2info\":{\"0\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":9000},\"5053121811998\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998149\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998148\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998151\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998150\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998145\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998144\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998147\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998146\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098179\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998173\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098178\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"4876928944995\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098177\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098176\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998174\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"4876928944997\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098183\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998169\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"4876928944996\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098182\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"4876928944999\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098181\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"4876928944998\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098180\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998170\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277311\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098187\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998165\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"4876928945000\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098186\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098185\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098184\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998166\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5054274483001\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098189\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098188\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5698747207747\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5698747207746\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5698747207745\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5698747207744\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5698747207749\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5698747207748\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998177\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998178\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5121015367125\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5121015367127\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5121015367126\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5121015367128\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277319\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277318\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277317\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277316\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277315\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277314\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277313\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277312\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738802\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738803\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738800\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738801\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098175\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277322\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5708085098174\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277321\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5002960277320\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738794\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998141\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738795\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998140\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738792\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5254239179578\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998143\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738793\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5254239179579\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998142\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5608663251852\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5254239179580\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998137\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738798\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5608663251853\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5254239179581\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998136\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738799\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5608663251854\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998139\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738796\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5608663251855\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5435498998138\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5239299738797\":{\"price\":{\"priceMoney\":42800,\"priceText\":\"428.00\",\"priceTitle\":\"价格\"},\"quantity\":100}},\"skuItem\":{\"hideQuantity\":true}}}",
                    "feature": {
                      "tcloudToH5": true,
                      "showSkuProRate": true
                    },
                    "rate": {
                      "keywords": [
                        {
                          "count": "92",
                          "attribute": "40041030-11",
                          "type": "1",
                          "word": "适合大胸妹子"
                        },
                        {
                          "count": "82",
                          "attribute": "40031074-11",
                          "type": "1",
                          "word": "松紧腰万能"
                        },
                        {
                          "count": "366",
                          "attribute": "40101000-11",
                          "type": "1",
                          "word": "尺寸合适"
                        },
                        {
                          "count": "105",
                          "attribute": "40131077-11",
                          "type": "1",
                          "word": "面料质地很好"
                        },
                        {
                          "count": "108",
                          "attribute": "40161003-11",
                          "type": "1",
                          "word": "质量很好"
                        },
                        {
                          "count": "23",
                          "attribute": "40001063-13",
                          "type": "-1",
                          "word": "底围太小"
                        }
                      ],
                      "rateList": [
                        {
                          "dateTime": "2024-07-31",
                          "images": [
                            "//gw.alicdn.com/bao/uploaded/i2/O1CN01yTM2Ig2HyMJ7h3Ijr_!!0-tbbala.jpg",
                            "//gw.alicdn.com/bao/uploaded/i2/O1CN0169u5Sc2HyMJ5ZgCYJ_!!0-tbbala.jpg",
                            "//gw.alicdn.com/bao/uploaded/i1/O1CN01l8GVeC2HyMJ5xq6jx_!!0-tbbala.jpg"
                          ],
                          "feedId": "1246028950271",
                          "memberLevel": "5",
                          "createTimeInterval": "1个月前",
                          "media": [
                            {
                              "imageUrl": "//gw.alicdn.com/bao/uploaded/i2/O1CN01yTM2Ig2HyMJ7h3Ijr_!!0-tbbala.jpg",
                              "type": "image"
                            },
                            {
                              "imageUrl": "//gw.alicdn.com/bao/uploaded/i2/O1CN0169u5Sc2HyMJ5ZgCYJ_!!0-tbbala.jpg",
                              "type": "image"
                            },
                            {
                              "imageUrl": "//gw.alicdn.com/bao/uploaded/i1/O1CN01l8GVeC2HyMJ5xq6jx_!!0-tbbala.jpg",
                              "type": "image"
                            },
                            {
                              "videoUrl": "//gw.alicdn.com/bao/uploaded//play/u/null/p/1/d/hd/e/6/t/1/474399244551.mp4",
                              "imageUrl": "//gw.alicdn.com/bao/uploaded//imgextra/i4/O1CN01oxSSxv2HyMJ663b7Q_!!0-tbbala.jpg",
                              "type": "video"
                            }
                          ],
                          "userName": "匿**家",
                          "headPic": "//gtms03.alicdn.com/tps/i3/TB1yeWeIFXXXXX5XFXXuAZJYXXX-210-210.png_80x80.jpg",
                          "skuInfo": "颜色分类:4SLS香草白 - 光面花纹;尺码:L[(80C/80D/85A/85B/85C)]",
                          "content": "m12这款无刚圈很舒服,宝贝很不错的,希望版型能够更漂亮一点,有好的会再回购,尺码大小合适,布料有质感,夏天就算很悶熱,不會有負擔,贴皮肤舒适有凉感透气且不过敏,非常适合大胸的一款文胸,大胸美眉友好,都扣到最后的还是感觉有点松刚刚好的样子",
                          "isVip": "false",
                          "tmallMemberLevel": "0"
                        }
                      ],
                      "utFeedId": "1246028950271",
                      "propRate": [],
                      "invite": {
                        "showInvite": "false",
                        "inviteText": ""
                      },
                      "totalCount": "1万+"
                    },
                    "props2": [],
                    "skuBase": {
                      "skus": [
                        {
                          "propPath": "1627207:30507115897;122508275:3241157",
                          "skuId": "5002960277315"
                        },
                        {
                          "propPath": "1627207:30507115897;122508275:121856409",
                          "skuId": "5002960277316"
                        },
                        {
                          "propPath": "1627207:30507115897;122508275:28316",
                          "skuId": "4876928944998"
                        },
                        {
                          "propPath": "1627207:30507115897;122508275:28317",
                          "skuId": "4876928944999"
                        },
                        {
                          "propPath": "1627207:30507115889;122508275:3241157",
                          "skuId": "5239299738803"
                        },
                        {
                          "propPath": "1627207:30507115889;122508275:121856409",
                          "skuId": "5239299738800"
                        },
                        {
                          "propPath": "1627207:30507115889;122508275:28316",
                          "skuId": "5239299738801"
                        },
                        {
                          "propPath": "1627207:30507115889;122508275:28317",
                          "skuId": "5239299738802"
                        },
                        {
                          "propPath": "1627207:32523430028;122508275:3241157",
                          "skuId": "5608663251855"
                        },
                        {
                          "propPath": "1627207:32523430028;122508275:121856409",
                          "skuId": "5608663251852"
                        },
                        {
                          "propPath": "1627207:32523430028;122508275:28316",
                          "skuId": "5608663251853"
                        },
                        {
                          "propPath": "1627207:32523430028;122508275:28317",
                          "skuId": "5608663251854"
                        },
                        {
                          "propPath": "1627207:30507115891;122508275:3241157",
                          "skuId": "5239299738795"
                        },
                        {
                          "propPath": "1627207:30507115891;122508275:121856409",
                          "skuId": "5239299738792"
                        },
                        {
                          "propPath": "1627207:30507115891;122508275:28316",
                          "skuId": "5239299738793"
                        },
                        {
                          "propPath": "1627207:30507115891;122508275:28317",
                          "skuId": "5239299738794"
                        },
                        {
                          "propPath": "1627207:30507115896;122508275:3241157",
                          "skuId": "5002960277311"
                        },
                        {
                          "propPath": "1627207:30507115896;122508275:121856409",
                          "skuId": "5002960277312"
                        },
                        {
                          "propPath": "1627207:30507115896;122508275:28316",
                          "skuId": "4876928944995"
                        },
                        {
                          "propPath": "1627207:30507115896;122508275:28317",
                          "skuId": "5053121811998"
                        },
                        {
                          "propPath": "1627207:30507115895;122508275:3241157",
                          "skuId": "5002960277313"
                        },
                        {
                          "propPath": "1627207:30507115895;122508275:121856409",
                          "skuId": "5002960277314"
                        },
                        {
                          "propPath": "1627207:30507115895;122508275:28316",
                          "skuId": "4876928944996"
                        },
                        {
                          "propPath": "1627207:30507115895;122508275:28317",
                          "skuId": "4876928944997"
                        },
                        {
                          "propPath": "1627207:30507115894;122508275:3241157",
                          "skuId": "5002960277317"
                        },
                        {
                          "propPath": "1627207:30507115894;122508275:121856409",
                          "skuId": "5002960277318"
                        },
                        {
                          "propPath": "1627207:30507115894;122508275:28316",
                          "skuId": "4876928945000"
                        },
                        {
                          "propPath": "1627207:30507115894;122508275:28317",
                          "skuId": "5054274483001"
                        },
                        {
                          "propPath": "1627207:30507115892;122508275:3241157",
                          "skuId": "5002960277321"
                        },
                        {
                          "propPath": "1627207:30507115892;122508275:121856409",
                          "skuId": "5002960277322"
                        },
                        {
                          "propPath": "1627207:30507115892;122508275:28316",
                          "skuId": "5121015367127"
                        },
                        {
                          "propPath": "1627207:30507115892;122508275:28317",
                          "skuId": "5121015367128"
                        },
                        {
                          "propPath": "1627207:30507115898;122508275:3241157",
                          "skuId": "5002960277319"
                        },
                        {
                          "propPath": "1627207:30507115898;122508275:121856409",
                          "skuId": "5002960277320"
                        },
                        {
                          "propPath": "1627207:30507115898;122508275:28316",
                          "skuId": "5121015367125"
                        },
                        {
                          "propPath": "1627207:30507115898;122508275:28317",
                          "skuId": "5121015367126"
                        },
                        {
                          "propPath": "1627207:30507115899;122508275:3241157",
                          "skuId": "5254239179581"
                        },
                        {
                          "propPath": "1627207:30507115899;122508275:121856409",
                          "skuId": "5254239179578"
                        },
                        {
                          "propPath": "1627207:30507115899;122508275:28316",
                          "skuId": "5254239179579"
                        },
                        {
                          "propPath": "1627207:30507115899;122508275:28317",
                          "skuId": "5254239179580"
                        },
                        {
                          "propPath": "1627207:31279972920;122508275:3241157",
                          "skuId": "5435498998139"
                        },
                        {
                          "propPath": "1627207:31279972920;122508275:121856409",
                          "skuId": "5435498998136"
                        },
                        {
                          "propPath": "1627207:31279972920;122508275:28316",
                          "skuId": "5435498998137"
                        },
                        {
                          "propPath": "1627207:31279972920;122508275:28317",
                          "skuId": "5435498998138"
                        },
                        {
                          "propPath": "1627207:31279972921;122508275:3241157",
                          "skuId": "5435498998143"
                        },
                        {
                          "propPath": "1627207:31279972921;122508275:121856409",
                          "skuId": "5435498998140"
                        },
                        {
                          "propPath": "1627207:31279972921;122508275:28316",
                          "skuId": "5435498998141"
                        },
                        {
                          "propPath": "1627207:31279972921;122508275:28317",
                          "skuId": "5435498998142"
                        },
                        {
                          "propPath": "1627207:30507115903;122508275:3241157",
                          "skuId": "5435498998147"
                        },
                        {
                          "propPath": "1627207:30507115903;122508275:121856409",
                          "skuId": "5435498998144"
                        },
                        {
                          "propPath": "1627207:30507115903;122508275:28316",
                          "skuId": "5435498998145"
                        },
                        {
                          "propPath": "1627207:30507115903;122508275:28317",
                          "skuId": "5435498998146"
                        },
                        {
                          "propPath": "1627207:33628760366;122508275:3241157",
                          "skuId": "5708085098185"
                        },
                        {
                          "propPath": "1627207:33628760366;122508275:121856409",
                          "skuId": "5708085098182"
                        },
                        {
                          "propPath": "1627207:33628760366;122508275:28316",
                          "skuId": "5708085098183"
                        },
                        {
                          "propPath": "1627207:33628760366;122508275:28317",
                          "skuId": "5708085098184"
                        },
                        {
                          "propPath": "1627207:31279972922;122508275:3241157",
                          "skuId": "5435498998151"
                        },
                        {
                          "propPath": "1627207:31279972922;122508275:121856409",
                          "skuId": "5435498998148"
                        },
                        {
                          "propPath": "1627207:31279972922;122508275:28316",
                          "skuId": "5435498998149"
                        },
                        {
                          "propPath": "1627207:31279972922;122508275:28317",
                          "skuId": "5435498998150"
                        },
                        {
                          "propPath": "1627207:33628760367;122508275:3241157",
                          "skuId": "5708085098189"
                        },
                        {
                          "propPath": "1627207:33628760367;122508275:121856409",
                          "skuId": "5708085098186"
                        },
                        {
                          "propPath": "1627207:33628760367;122508275:28316",
                          "skuId": "5708085098187"
                        },
                        {
                          "propPath": "1627207:33628760367;122508275:28317",
                          "skuId": "5708085098188"
                        },
                        {
                          "propPath": "1627207:33628760365;122508275:3241157",
                          "skuId": "5708085098181"
                        },
                        {
                          "propPath": "1627207:33628760365;122508275:121856409",
                          "skuId": "5708085098178"
                        },
                        {
                          "propPath": "1627207:33628760365;122508275:28316",
                          "skuId": "5708085098179"
                        },
                        {
                          "propPath": "1627207:33628760365;122508275:28317",
                          "skuId": "5708085098180"
                        },
                        {
                          "propPath": "1627207:33628760364;122508275:3241157",
                          "skuId": "5708085098177"
                        },
                        {
                          "propPath": "1627207:33628760364;122508275:121856409",
                          "skuId": "5708085098174"
                        },
                        {
                          "propPath": "1627207:33628760364;122508275:28316",
                          "skuId": "5708085098175"
                        },
                        {
                          "propPath": "1627207:33628760364;122508275:28317",
                          "skuId": "5708085098176"
                        },
                        {
                          "propPath": "1627207:33727205199;122508275:28316",
                          "skuId": "5698747207746"
                        },
                        {
                          "propPath": "1627207:33727205199;122508275:28317",
                          "skuId": "5698747207747"
                        },
                        {
                          "propPath": "1627207:33504602306;122508275:28316",
                          "skuId": "5435498998177"
                        },
                        {
                          "propPath": "1627207:33504602306;122508275:28317",
                          "skuId": "5435498998178"
                        },
                        {
                          "propPath": "1627207:30507115908;122508275:28316",
                          "skuId": "5435498998165"
                        },
                        {
                          "propPath": "1627207:30507115908;122508275:28317",
                          "skuId": "5435498998166"
                        },
                        {
                          "propPath": "1627207:33499844142;122508275:28316",
                          "skuId": "5698747207744"
                        },
                        {
                          "propPath": "1627207:33499844142;122508275:28317",
                          "skuId": "5698747207745"
                        },
                        {
                          "propPath": "1627207:30507115909;122508275:28316",
                          "skuId": "5435498998169"
                        },
                        {
                          "propPath": "1627207:30507115909;122508275:28317",
                          "skuId": "5435498998170"
                        },
                        {
                          "propPath": "1627207:30596777461;122508275:28316",
                          "skuId": "5435498998173"
                        },
                        {
                          "propPath": "1627207:30596777461;122508275:28317",
                          "skuId": "5435498998174"
                        },
                        {
                          "propPath": "1627207:33504602307;122508275:28316",
                          "skuId": "5698747207748"
                        },
                        {
                          "propPath": "1627207:33504602307;122508275:28317",
                          "skuId": "5698747207749"
                        },
                        {
                          "propPath": "1627207:30507115890;122508275:3241157",
                          "skuId": "5239299738799"
                        },
                        {
                          "propPath": "1627207:30507115890;122508275:121856409",
                          "skuId": "5239299738796"
                        },
                        {
                          "propPath": "1627207:30507115890;122508275:28316",
                          "skuId": "5239299738797"
                        },
                        {
                          "propPath": "1627207:30507115890;122508275:28317",
                          "skuId": "5239299738798"
                        }
                      ],
                      "props": [
                        {
                          "values": [
                            {
                              "vid": "30507115897",
                              "image": "http://img.alicdn.com/imgextra/i3/3265150369/O1CN01O37sNE1Eb35Sas1wH_!!3265150369.jpg",
                              "name": "54A2黑曜石 - 光面花纹"
                            },
                            {
                              "vid": "30507115889",
                              "image": "http://img.alicdn.com/imgextra/i3/3265150369/O1CN01uOLUUL1Eb35SQRnzD_!!3265150369.jpg",
                              "name": "3MQ4粉色 - 光面花纹"
                            },
                            {
                              "vid": "32523430028",
                              "image": "http://img.alicdn.com/imgextra/i3/3265150369/O1CN01SLLRpi1Eb36g1OpP7_!!3265150369.jpg",
                              "name": "57S9丁香紫-光面花纹"
                            },
                            {
                              "vid": "30507115891",
                              "image": "http://img.alicdn.com/imgextra/i2/3265150369/O1CN01YxdWOY1Eb35Vd9BhE_!!3265150369.jpg",
                              "name": "4X0K海军蓝 - 光面花纹"
                            },
                            {
                              "vid": "30507115896",
                              "image": "http://img.alicdn.com/imgextra/i4/3265150369/O1CN01HzHEDF1Eb35SQT4xI_!!3265150369.jpg",
                              "name": "3XY0裸色 - 光面花纹"
                            },
                            {
                              "vid": "30507115895",
                              "image": "http://img.alicdn.com/imgextra/i3/3265150369/O1CN01jy57vL1Eb35W00X0H_!!3265150369.jpg",
                              "name": "4SUA烟紫灰 - 光面花纹"
                            },
                            {
                              "vid": "30507115894",
                              "image": "http://img.alicdn.com/imgextra/i3/3265150369/O1CN01g09VWk1Eb35SS9bXS_!!3265150369.jpg",
                              "name": "85S0香芋粉 - 光面花纹"
                            },
                            {
                              "vid": "30507115892",
                              "image": "http://img.alicdn.com/imgextra/i2/3265150369/O1CN01rkPHb41Eb35Ucacx3_!!3265150369.jpg",
                              "name": "94B9薄荷绿 - 光面花纹"
                            },
                            {
                              "vid": "30507115898",
                              "image": "http://img.alicdn.com/imgextra/i1/3265150369/O1CN01q8Fu4a1Eb35SarxnG_!!3265150369.jpg",
                              "name": "11T1樱花粉 - 光面花纹"
                            },
                            {
                              "vid": "30507115899",
                              "image": "http://img.alicdn.com/imgextra/i4/3265150369/O1CN01QAkUK41Eb35PLzzKV_!!3265150369.jpg",
                              "name": "86Q4红色 - 光面花纹"
                            },
                            {
                              "vid": "31279972920",
                              "image": "http://img.alicdn.com/imgextra/i2/3265150369/O1CN01rEkRrn1Eb35PLyuof_!!3265150369.jpg",
                              "name": "75S6嫩粉色 - 光面花纹"
                            },
                            {
                              "vid": "31279972921",
                              "image": "http://img.alicdn.com/imgextra/i4/3265150369/O1CN01Rcu4Iz1Eb35UcdF7M_!!3265150369.jpg",
                              "name": "5ZP0晨雾紫 - 光面花纹"
                            },
                            {
                              "vid": "30507115903",
                              "image": "http://img.alicdn.com/imgextra/i3/3265150369/O1CN01fdaPXY1Eb35SQT4yJ_!!3265150369.jpg",
                              "name": "4SLS香草白 - 光面花纹"
                            },
                            {
                              "vid": "33628760366",
                              "image": "http://img.alicdn.com/imgextra/i1/3265150369/O1CN01K7YPh61Eb37u124ol_!!3265150369.jpg",
                              "name": "2Y3B墨绿色-光面花纹"
                            },
                            {
                              "vid": "31279972922",
                              "image": "http://img.alicdn.com/imgextra/i3/3265150369/O1CN01YTdy5R1Eb35SS8X10_!!3265150369.jpg",
                              "name": "48PF浅水蓝 - 光面花纹"
                            },
                            {
                              "vid": "33628760367",
                              "image": "http://img.alicdn.com/imgextra/i4/3265150369/O1CN01PBsPPj1Eb384ykazJ_!!3265150369.jpg",
                              "name": "5RTC紫豹纹-光面花纹"
                            },
                            {
                              "vid": "33628760365",
                              "image": "http://img.alicdn.com/imgextra/i1/3265150369/O1CN01QNinpp1Eb37u13DYu_!!3265150369.jpg",
                              "name": "08K8橄榄绿-光面花纹"
                            },
                            {
                              "vid": "33628760364",
                              "image": "http://img.alicdn.com/imgextra/i3/3265150369/O1CN01ctlZVL1Eb380tBq8E_!!3265150369.jpg",
                              "name": "75Q6深棕色-光面花纹"
                            },
                            {
                              "vid": "33727205199",
                              "image": "http://img.alicdn.com/imgextra/i1/3265150369/O1CN0151Wnpc1Eb37rh515J_!!3265150369.jpg",
                              "name": "94B9浅绿色-Logo蕾丝"
                            },
                            {
                              "vid": "33504602306",
                              "image": "http://img.alicdn.com/imgextra/i2/3265150369/O1CN0119K1Iv1Eb37nkDYlp_!!3265150369.jpg",
                              "name": "30QS浅灰色 - Logo蕾丝"
                            },
                            {
                              "vid": "30507115908",
                              "image": "http://img.alicdn.com/imgextra/i4/3265150369/O1CN013YLQAi1Eb37gnOVwk_!!3265150369.jpg",
                              "name": "86S7活力粉 - Logo蕾丝"
                            },
                            {
                              "vid": "33499844142",
                              "image": "http://img.alicdn.com/imgextra/i4/3265150369/O1CN01iZu3df1Eb37oq4C8O_!!3265150369.jpg",
                              "name": "85S0香芋粉-Logo蕾丝"
                            },
                            {
                              "vid": "30507115909",
                              "image": "http://img.alicdn.com/imgextra/i4/3265150369/O1CN01OpIKeV1Eb37pdI0Xm_!!3265150369.jpg",
                              "name": "48PF浅蓝色 - Logo蕾丝"
                            },
                            {
                              "vid": "30596777461",
                              "image": "http://img.alicdn.com/imgextra/i3/3265150369/O1CN01BODZH11Eb37mSYTCA_!!3265150369.jpg",
                              "name": "39H7奶黄色 - Logo蕾丝"
                            },
                            {
                              "vid": "33504602307",
                              "image": "http://img.alicdn.com/imgextra/i2/3265150369/O1CN01W35Wt51Eb37pEZZcG_!!3265150369.jpg",
                              "name": "20PK深灰色-Logo蕾丝"
                            },
                            {
                              "vid": "30507115890",
                              "image": "http://img.alicdn.com/imgextra/i4/3265150369/O1CN01Yh0Zxy1Eb35KpJ4uD_!!3265150369.jpg",
                              "name": "21P1薰衣草紫 - 光面花纹"
                            }
                          ],
                          "name": "颜色分类",
                          "pid": "1627207"
                        },
                        {
                          "values": [
                            {
                              "vid": "3241157",
                              "name": "SDD (70DD/75DD)"
                            },
                            {
                              "vid": "121856409",
                              "name": "MDD (80DD)"
                            },
                            {
                              "vid": "28316",
                              "name": "L (80C/80D/85A/85B/85C)"
                            },
                            {
                              "vid": "28317",
                              "name": "XL (85D/90B/90C)"
                            }
                          ],
                          "name": "尺码",
                          "pid": "122508275"
                        }
                      ]
                    },
                    "delivery": {
                      "completedTo": "宝鸡市",
                      "overseaContraBandFlag": "false",
                      "showAreaChooser": "true",
                      "postage": "快递: 免运费",
                      "extras": {
                        "PostTime": {
                          "text": "15:00前付款,承诺今天发货"
                        },
                        "ReceiveTime": {
                          "text": "15:00前付款,承诺今天发货"
                        }
                      },
                      "to": "宝鸡市",
                      "areaSell": "true",
                      "areaId": "610300",
                      "from": "多仓发货"
                    },
                    "skuCore": {
                      "skuItem": {
                        "hideQuantity": "false",
                        "recommendTip": "输入尺码,找到适合的",
                        "showAddress": "true",
                        "buttonText": "输入尺码",
                        "location": "宝鸡市"
                      },
                      "sku2info": {
                        "5708085098176": {
                          "limitText": "每人限购10件",
                          "quantity": 7,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098177": {
                          "limitText": "每人限购10件",
                          "quantity": 36,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098178": {
                          "limitText": "每人限购10件",
                          "quantity": 19,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098179": {
                          "limitText": "每人限购10件",
                          "quantity": 176,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998150": {
                          "limitText": "每人限购10件",
                          "quantity": 3,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5254239179580": {
                          "limitText": "每人限购10件",
                          "quantity": 200,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998151": {
                          "limitText": "每人限购10件",
                          "quantity": 142,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5254239179581": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098174": {
                          "limitText": "每人限购10件",
                          "quantity": 29,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098175": {
                          "limitText": "每人限购10件",
                          "quantity": 52,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738800": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738803": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738802": {
                          "limitText": "每人限购10件",
                          "quantity": 95,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738801": {
                          "limitText": "每人限购10件",
                          "quantity": 140,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5698747207748": {
                          "limitText": "每人限购10件",
                          "quantity": 159,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5254239179579": {
                          "limitText": "每人限购10件",
                          "quantity": 200,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5698747207749": {
                          "limitText": "每人限购10件",
                          "quantity": 62,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5698747207746": {
                          "limitText": "每人限购10件",
                          "quantity": 147,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277322": {
                          "limitText": "每人限购10件",
                          "quantity": 7,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5698747207747": {
                          "limitText": "每人限购10件",
                          "quantity": 50,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277321": {
                          "limitText": "每人限购10件",
                          "quantity": 16,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5698747207744": {
                          "limitText": "每人限购10件",
                          "quantity": 200,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277320": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5698747207745": {
                          "limitText": "每人限购10件",
                          "quantity": 87,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5608663251855": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098180": {
                          "limitText": "每人限购10件",
                          "quantity": 15,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098181": {
                          "limitText": "每人限购10件",
                          "quantity": 1,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "4876928945000": {
                          "limitText": "每人限购10件",
                          "quantity": 200,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098182": {
                          "limitText": "每人限购10件",
                          "quantity": 43,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "4876928944999": {
                          "limitText": "每人限购10件",
                          "quantity": 97,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "4876928944998": {
                          "limitText": "每人限购10件",
                          "quantity": 170,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "4876928944997": {
                          "limitText": "每人限购10件",
                          "quantity": 47,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5608663251852": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "4876928944996": {
                          "limitText": "每人限购10件",
                          "quantity": 103,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5608663251853": {
                          "limitText": "每人限购10件",
                          "quantity": 68,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "4876928944995": {
                          "limitText": "每人限购10件",
                          "quantity": 45,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5608663251854": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998140": {
                          "limitText": "每人限购10件",
                          "quantity": 182,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998143": {
                          "limitText": "每人限购10件",
                          "quantity": 200,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998144": {
                          "limitText": "每人限购10件",
                          "quantity": 200,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5054274483001": {
                          "limitText": "每人限购10件",
                          "quantity": 65,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998141": {
                          "limitText": "每人限购10件",
                          "quantity": 108,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998142": {
                          "limitText": "每人限购10件",
                          "quantity": 55,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998147": {
                          "limitText": "每人限购10件",
                          "quantity": 200,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998148": {
                          "limitText": "每人限购10件",
                          "quantity": 82,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998145": {
                          "limitText": "每人限购10件",
                          "quantity": 67,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998146": {
                          "limitText": "每人限购10件",
                          "quantity": 84,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "0": {
                          "limitText": "每人限购10件",
                          "quantity": 6402,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998149": {
                          "limitText": "每人限购10件",
                          "quantity": 180,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998173": {
                          "limitText": "每人限购10件",
                          "quantity": 51,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998170": {
                          "limitText": "每人限购10件",
                          "quantity": 20,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998177": {
                          "limitText": "每人限购10件",
                          "quantity": 57,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998174": {
                          "limitText": "每人限购10件",
                          "quantity": 17,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998136": {
                          "limitText": "每人限购10件",
                          "quantity": 82,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998137": {
                          "limitText": "每人限购10件",
                          "quantity": 158,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998178": {
                          "limitText": "每人限购10件",
                          "quantity": 14,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5121015367128": {
                          "limitText": "每人限购10件",
                          "quantity": 20,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998138": {
                          "limitText": "每人限购10件",
                          "quantity": 44,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998139": {
                          "limitText": "每人限购10件",
                          "quantity": 135,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5121015367125": {
                          "limitText": "每人限购10件",
                          "quantity": 64,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5121015367127": {
                          "limitText": "每人限购10件",
                          "quantity": 76,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5121015367126": {
                          "limitText": "每人限购10件",
                          "quantity": 23,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098187": {
                          "limitText": "每人限购10件",
                          "quantity": 114,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738792": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098188": {
                          "limitText": "每人限购10件",
                          "quantity": 36,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098189": {
                          "limitText": "每人限购10件",
                          "quantity": 3,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098183": {
                          "limitText": "每人限购10件",
                          "quantity": 113,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738796": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098184": {
                          "limitText": "每人限购10件",
                          "quantity": 41,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738795": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098185": {
                          "limitText": "每人限购10件",
                          "quantity": 42,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738794": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5708085098186": {
                          "limitText": "每人限购10件",
                          "quantity": 25,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738793": {
                          "limitText": "每人限购10件",
                          "quantity": 25,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998165": {
                          "limitText": "每人限购10件",
                          "quantity": 200,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998166": {
                          "limitText": "每人限购10件",
                          "quantity": 60,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738799": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738798": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5239299738797": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5435498998169": {
                          "limitText": "每人限购10件",
                          "quantity": 76,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5254239179578": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277311": {
                          "limitText": "每人限购10件",
                          "quantity": 185,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277315": {
                          "limitText": "每人限购10件",
                          "quantity": 141,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277314": {
                          "limitText": "每人限购10件",
                          "quantity": 78,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277313": {
                          "limitText": "每人限购10件",
                          "quantity": 60,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277312": {
                          "limitText": "每人限购10件",
                          "quantity": 200,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277319": {
                          "limitText": "每人限购10件",
                          "quantity": 0,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277318": {
                          "limitText": "每人限购10件",
                          "quantity": 36,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277317": {
                          "limitText": "每人限购10件",
                          "quantity": 60,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5053121811998": {
                          "limitText": "每人限购10件",
                          "quantity": 2,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        },
                        "5002960277316": {
                          "limitText": "每人限购10件",
                          "quantity": 105,
                          "limit": 10,
                          "noLinePrice": true,
                          "price": {
                            "priceMoney": 23800,
                            "priceText": "238",
                            "showTitle": false,
                            "sugProm": false
                          }
                        }
                      },
                      "abSwitch": {
                        "enableShowPic": "false",
                        "enableShowProtection": "false"
                      },
                      "atmosphere": []
                    },
                    "app_ver": "4.0.5-7.0",
                    "_ddf": "sd",
                    "app_ver_check": "ok",
                    "format_check": "ok"
                  },
                  "error": "",
                  "secache": "18109decec279efd11c1754cc60e33ab",
                  "secache_time": 1725065556,
                  "secache_date": "2024-08-31 08:52:36",
                  "reason": "",
                  "error_code": "0000",
                  "cache": 0,
                  "api_info": "today: max:15000 all[=++];expires:2031-01-01",
                  "execution_time": "3.003",
                  "server_time": "Beijing/2024-08-31 08:52:36",
                  "client_ip": "127.0.0.1",
                  "call_args": {
                    "num_iid": "680783982087"
                  },
                  "api_type": "taobao",
                  "server_memory": "4.87MB",
                  "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(微信同号)