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

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

taobao.item_get_app(Ver:4.0.0-7.0)

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

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

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

    请求参数:num_iid=520813250866

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

    响应参数

    Version:3.0.0-7.0 Date:2023-09-20

    名称 类型 必须 示例值 描述
    item
    Mix 1 获得淘宝app商品详情原数据
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($curl, CURLOPT_FAILONERROR, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HEADER, true);
    curl_setopt($curl, CURLOPT_ENCODING, "gzip");
    var_dump(curl_exec($curl));
    ?>
    <?php
    //定义缓存目录和引入文件
    define("DIR_RUNTIME","runtime/");
    define("DIR_ERROR","runtime/");
    define("SECACHE_SIZE","0");
    //SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
    include ("ObApiClient.php");
    
    $obapi = new otao\ObApiClient();
    $obapi->api_url = "http://api-gw.onebound.cn/";
    $obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
    $obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
    $obapi->api_key = "<您自己的apiKey>";
    $obapi->api_secret = "<您自己的apiSecret>";
    $obapi->api_version ="";
    $obapi->secache_path ="runtime/";
    $obapi->secache_time ="86400";
    $obapi->cache = true;
    
    $api_data = $obapi->exec(
                    array(
    	                "api_type" =>"taobao",
    	                "api_name" =>"item_get_app",
    	                "api_params"=>array (
      'num_iid' => '520813250866',
    )
                    )
                );
     var_dump($api_data);
    ?>
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.Reader;
    import java.net.URL;
    import java.nio.charset.Charset;
    import org.json.JSONException;
    import org.json.JSONObject;
    import java.io.PrintWriter;
    import java.net.URLConnection;
    
    public class Example {
    	private static String readAll(Reader rd) throws IOException {
    		StringBuilder sb = new StringBuilder();
    		int cp;
    		while ((cp = rd.read()) != -1) {
    			sb.append((char) cp);
    		}
    		return  sb.toString();
    	}
    	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
    		URL realUrl = new URL(url);
    		URLConnection conn = realUrl.openConnection();
    		conn.setDoOutput(true);
    		conn.setDoInput(true);
    		PrintWriter out = new PrintWriter(conn.getOutputStream());
    		out.print(body);
    		out.flush();
    		InputStream instream = conn.getInputStream();
    		try {
    			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
    			String jsonText = readAll(rd);
    			JSONObject json = new JSONObject(jsonText);
    			return json;
    		} finally {
    			instream.close();
    		}
    	}
    	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
    		URL realUrl = new URL(url);
    		URLConnection conn = realUrl.openConnection();
    		InputStream instream = conn.getInputStream();
    		try {
    			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
    			String jsonText = readAll(rd);
    			JSONObject json = new JSONObject(jsonText);
    			return json;
    		} finally {
    			instream.close();
    		}
    	}
    	public static void main(String[] args) throws IOException, JSONException {
    		// 请求示例 url 默认请求参数已经URL编码处理
    		String url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    		JSONObject json = getRequestFromUrl(url);
    		System.out.println(json.toString());
    	}
    
    }
    //using System.Net.Security;
    //using System.Security.Cryptography.X509Certificates;
    private const String method = "GET";
    static void Main(string[] args)
    {
    	String bodys = "";
    	// 请求示例 url 默认请求参数已经做URL编码
    	String url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    	HttpWebRequest httpRequest = null;
    	HttpWebResponse httpResponse = null; 
    	if (url.Contains("https://"))
    	{
    		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
    		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
    	}
    	else
    	{
    		httpRequest = (HttpWebRequest)WebRequest.Create(url);
    	}
    	httpRequest.Method = method;
    	if (0 < bodys.Length)
    	{
    		byte[] data = Encoding.UTF8.GetBytes(bodys);
    		using (Stream stream = httpRequest.GetRequestStream())
    		{
    		stream.Write(data, 0, data.Length);
    		}
    	}
    	try
    	{
    		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
    	}
    	catch (WebException ex)
    	{
    		httpResponse = (HttpWebResponse)ex.Response;
    	}
    	Console.WriteLine(httpResponse.StatusCode);
    	Console.WriteLine(httpResponse.Method);
    	Console.WriteLine(httpResponse.Headers);
    	Stream st = httpResponse.GetResponseStream();
    	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
    	Console.WriteLine(reader.ReadToEnd());
    	Console.WriteLine("\n");
    }
    public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
    {
    	return true;
    }
    # coding:utf-8
    """
    Compatible for python2.x and python3.x
    requirement: pip install requests
    """
    from __future__ import print_function
    import requests
    # 请求示例 url 默认请求参数已经做URL编码
    url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"
    headers = {
        "Accept-Encoding": "gzip",
        "Connection": "close"
    }
    if __name__ == "__main__":
        r = requests.get(url, headers=headers)
        json_obj = r.json()
        print(json_obj)
    url := fmt.Sprintf("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866", params)
    req, err := http.NewRequest("GET", url, nil)
    if err != nil {
        panic(err)
    }
    req.Header.Set("Authorization", apiKey)
    
    client := &http.Client{}
    resp, err := client.Do(req)
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()
    
    body, err := ioutil.ReadAll(resp.Body)
    if err != nil {
        panic(err)
    }
    
    fmt.Println(string(body))
    
    fetch('https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"520813250866"})// request parameters here
    })
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error(error));
    
    <script src="js/obapi.js"></script>
    <script type="text/javascript">
    obAPI.config({
        debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
        api_url: "https://api-gw.onebound.cn", // 
        api_key: "<您自己的apiKey>", // 必填,
        api_secret: "<您自己的apiSecret>", //
        lang: "cn", // 
        timestamp: "", // 必填,生成签名的时间戳
        nonceStr: "", // 必填,生成签名的随机串
        signature: "",// 必填,签名
        jsApiList: [] // 必填,需要使用的JS接口列表
    });
    </script>
    <div id="api_data_box"></div>
    <script type="text/javascript">
    obAPI.exec(
         {
         "api_type":"taobao",
         "api_name" : "item_get_app",
         "api_params": {"num_iid":"520813250866"}//num_iid=520813250866,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
    http = Net::HTTP.new(url.host, url.port)
    http.use_ssl = true
    request = Net::HTTP::Get.new(url)
    response = http.request(request)
    puts response.read_body 
    
    import Foundation
     
    let url = URL(string: "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")!
    let task = URLSession.shared.dataTask(with: url) { data, response, error in
        guard let data = data else {
            print("Error: No data was returned")
            return
        }
         
        if let data = String(data: data, encoding: .utf8) {
            print(data)
        }
    }
    task.resume()
    
    NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"];
    
    NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];
    
    [request setHTTPMethod:@"GET"];
    NSError *error;
    NSURLResponse *response;
    
    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
    
    NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
    NSLog(@"%@",result);
    
    #include<stdio.h>
    #include <stdlib.h>
    #include<string.h>
    #include<curl/curl.h>
    
    int main(){
      CURL *curl;  
      CURLcode res;   
      struct curl_slist *headers=NULL; 
    
      char url[] = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
      curl_global_init(CURL_GLOBAL_ALL); 
      curl = curl_easy_init(); 
    
      if(curl) {
        curl_easy_setopt(curl, CURLOPT_URL,url);
        headers = curl_slist_append(headers, "Content-Type: application/json"); 
    
        curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
        res = curl_easy_perform(curl);
    
        if(res != CURLE_OK){
          printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
        }
        curl_easy_cleanup(curl);          
      }
      curl_global_cleanup();
      return 0;
    }
    
    #include<iostream>
    #include<string>
    #include<curl/curl.h>
    
    using namespace std;
    
    static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
    {
        std::size_t realSize = size *nmemb;
        auto *realPtr = reinterpret_cast<char *>(ptr);
    
        for (std::size_t i=0;i<realSize;++i) {
            *(stream) += *(realPtr + i);
        }
    
        return realSize;
    }
    
    int main(){
    
         CURL *curl;
         CURLcode result;
         string readBuffer;
         curl = curl_easy_init();
    
         if(curl) {
    
             curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866");
             curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
             curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
             curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
    
             result = curl_easy_perform(curl);
    
             if(result == CURLE_OK) {
                 cout<<readBuffer<<endl;
             }else{
                 cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
             }
    
             curl_easy_cleanup(curl);
         }
         return 0;
    }
    
    const https = require("https");
    
    https.get("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866", (resp) => {
      let data = "";
    
      resp.on("data", (chunk) => {
        data += chunk;
      });
    
      resp.on("end", () => {
        console.log(data);
      });
    }).on("error", (err) => {
      console.log("Error: " + err.message);
    });
    
    import java.net.HttpURLConnection
    import java.net.URL
    
    fun main() {
        val url = URL("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
        val con = url.openConnection() as HttpURLConnection
        con.requestMethod = "GET"
    
        val responseCode = con.responseCode
        if (responseCode == HttpURLConnection.HTTP_OK) { // success
            val inputLine = con.inputStream.bufferedReader().use { it.readText() }
            println(inputLine)
        } else {
            println("GET request failed")
        }
    }
    
    use std::io::{self, Read};
    use reqwest;
    
    fn main() -> io::Result<()> {
    
        let mut resp = reqwest::get("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
    content(r)
    url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    response = webread(url);
    disp(response);
    
    响应示例
    {
    	"item": {
    		"apiStack": {
    			"name": "esi",
    			"value": "{\"endpoint\": {\"mode\": \"iphone\", \"osVersion\": \"7.10.3\", \"protocolVersion\": \"3.0\", \"ultronage\": \"true\"}, \"data\": {}, \"linkage\": {}, \"hierarchy\": {\"root\": \"detail\", \"structure\": {\"bottomBar\": [\"bottom_bar$bottom_bar_TB_promo2019_get_voucher_buy_3696074\"], \"divisionDescRecmd\": [\"division$divisionDescRecmd_3696023\"], \"detailInfoContainer\": [\"pic_gallery$pic_gallery_3695801\", \"dinamic$price_daily_3695807\", \"dinamic$coupon_promote_daily_3695828\", \"dinamic$price_preheat_current_3695831\", \"dinamic$DetailBrandInfoCloth_3695832\", \"dinamic$TBDetailStagesTip_3695833\", \"tip$TB_presaleTmall2_3695836\", \"tip$TB_priceTip2_3695837\", \"tip$TB_pricedCouponTip2_3695838\", \"tip$TB_shipTime2_3695839\", \"dinamic$TB_coupon_promotion2019_3695841\", \"dinamic$TB_detail_black_card_brand_info_3695848\", \"dinamic$TB_detail_brand_info_3695849\", \"dinamic$TB_detail_title_normal_3695850\", \"dinamic$TB_detail_title_tmallMarket_3695852\", \"dinamic$TB_detail_title_xinxuan_3695853\", \"dinamic$TB_detail_kernel_params_3695854\", \"dinamic$TB_detail_small_activity_3695858\", \"dinamic$coinDiscount_3695863\", \"dinamic$coinDivideLine_3695864\", \"dinamic$TB_detail_subInfo_default_3695878\", \"dinamic$TB_detail_appointment_store_3695889\", \"dinamic$appointment_store3_3695890\", \"dinamic$TB_detail_divider_3695892\", \"dinamic$TB_detail_entrance_artascope_3695893\", \"dinamic$TB_detail_divider_3695894\", \"dinamic$detail_pick_3695895\", \"dinamic$TB_detail_redpacket_3695896\", \"dinamic$TB_detail_coupon_3695897\", \"dinamic$TB_detail_promotion_3695900\", \"dinamic$TB_detail_new_lingquan_3695902\", \"dinamic$TB_detail_share_3695905\", \"dinamic$TB_jk_detail_coupon_share_3695906\", \"dinamic$TB_detail_tmallfeature_v1_3695908\", \"dinamic$TB_detail_cuntao_pinchegou_3695909\", \"dinamic$TB_detail_creditbuy_3695911\", \"dinamic$TBDetailDivider_3695914\", \"dinamic$DetailFisson_3695915\", \"dinamic$TB_detail_divider_3695916\", \"dinamic$TB_msfx_tmall_banner_3695917\", \"dinamic$TB_detail_sub_logistics_3695920\", \"dinamic$TB_detail_tax_3695928\", \"dinamic$TB_detail_trade_guarantee_3695929\", \"dinamic_o2o$TB_detail_o2o_3695932\", \"dinamic$tb_wyg_divider_3695934\", \"dinamic$TB_detail_divider_3695935\", \"dinamic$guarantee_and_delivery_3695936\", \"dinamic$tb_wyg_divider_3695937\", \"dinamic$detail_available_items_v2_3695938\", \"dinamic$TB_detail_divider_3695941\", \"dinamic$TB_detail_divider_3695949\", \"xsku$TB_Default_3695951\", \"dinamic$TB_detail_sku_cross_upgrade_3695952\", \"dinamic$TB_detail_sku_transform_3695953\", \"dinamic$TB_detail_product_props_3695956\", \"vessel$TB_guess_u_like_promotion_3695967\", \"dinamic$TB_detail_miniapp_diliver_3695968\", \"dinamic$TB_detail_miniapp_rmd_3695969\", \"dinamic$TB_detail_divider_rateLocator_3695970\", \"dinamic$TB_detail_comment_empty_3695971\", \"dinamic$TB_detail_comment_head_3695972\", \"dinamic$TB_detail_comment_tag_3695973\", \"dinamic$TB_detail_comment_single_hot_3695974\", \"dinamic$TB_detail_buyer_photo_3695976\", \"dinamic$TB_detail_ask_all_no_question_3695977\", \"dinamic$TB_detail_ask_all_two_questions_3695978\", \"dinamic$TB_detail_ask_all_aliMedical_3695979\", \"dinamic$aljk_doctor_question2_3695981\", \"dinamic$TB_detail_vipComment_3695982\", \"dinamic$TB_detail_jk_medical_official_case_card_v2_3695983\", \"dinamic$TB_detail_kb_tb_detail_1_content_header_3695984\", \"dinamic$TB_Detail_kb_tb_detail_1_meowkipedia_3695985\", \"dinamic$TB_Detail_kb_tb_detail_1_doctor_3695986\", \"dinamic$TB_Detail_kb_tb_detail_1_beauty_diary_3695987\", \"vessel$TB_guess_u_like_3695988\", \"dinamic$TB_detail_divider_3695989\", \"dinamic$TB_detail_shop_3695990\", \"dinamic$TB_detail_endorsement_3696002\", \"vessel$TB_shop_recommend_3696006\", \"dinamic$tb_wyg_divider_3696015\"], \"detailHome\": [\"detailInfo\", \"divisonDesc\", \"detailDesc\", \"divisionDescRecmd\", \"descRecmd\", \"divisionEnd\"], \"detailInfo\": [\"detailInfoContainer\"], \"divisionEnd\": [\"division$divisionEnd_3696026\"], \"divisonDesc\": [\"division$divisionDesc_3696021\"], \"naviTabs\": [\"detailNaviTabItem$naviTabInfo_3695797\", \"detailNaviTabItem$naviTabRate_3695798\", \"detailNaviTabItem$naviTabDesc_3695799\", \"detailNaviTabItem$naviTabDescRecmd_3695800\"], \"naviBar\": [\"naviControl\", \"naviTabs\"], \"bottom_bar$bottom_bar_TB_promo2019_get_voucher_buy_3696074\": [\"bottom_bar_icon$TB_shop_new_11928\", \"bottom_bar_icon$TB_wangwang_11929\", \"bottom_bar_fav$TB_fav_13015\", \"sys_button$cart_11932\", \"sys_button$sys_button_TB_promo2019_get_voucher_buy_837671\"], \"detailDesc\": [\"detailDesc$detailDesc_3696022\"], \"descRecmd\": [\"descRecmd$descRecmd_3696025\"], \"naviControl\": [\"detailNaviItem$naviItemLeft_3695792\", \"detailNaviItem$naviItemCustom_3695793\", \"detailNaviItem$naviItemRight_3695796\"], \"detail\": [\"naviBar\", \"detailHome\", \"bottomBar\"]}}, \"container\": {}, \"global\": {\"data\": {\"feature\": {\"isOnLine\": \"true\", \"tcloudToH5\": \"true\", \"showSkuProRate\": \"true\", \"dailyPrice\": \"true\", \"openAddOnTools\": \"false\", \"skuNewBigImg\": \"true\", \"promotion2019\": \"true\", \"showInteractionBarRecommend\": \"true\", \"promotion2018\": \"true\", \"freshmanRedPacket\": \"true\", \"newPrice\": \"true\", \"showSkuThumbnail\": \"true\", \"cainiaoNoramal\": \"true\", \"showSku\": \"true\", \"guessYouLike\": \"true\", \"allChannelNewDetailRoute\": \"false\", \"enableDpbModule\": \"false\", \"abNewDetailRoute\": \"false\", \"showGroupChat\": \"true\", \"isNewH5\": \"true\", \"hasSku\": \"true\", \"taobao2018\": \"true\", \"hasNewCombo\": \"true\", \"noShareGroup\": \"true\", \"showInteractionBar\": \"true\", \"superActTime\": \"false\", \"pailitao4BlackPage\": \"true\", \"openGradient\": \"true\", \"newAddress\": \"true\"}, \"item\": {\"h5ItemUrl\": \"https://new.m.taobao.com/detail.htm?id=652874751412&hybrid=true\", \"videos\": null, \"shortTitle\": null, \"exParams\": {}, \"title\": \"北欧轻奢布艺沙发 小户型简约现代客厅ins风网红款三双人订制沙发\", \"openDecoration\": false, \"pcADescUrl\": \"//market.m.taobao.com/app/detail-project/desc/index.html?id=652874751412&descVersion=7.0&type=1&f=icoss!0652874751412!12117659558&sellerType=C\", \"logo\": null, \"taobaoDescUrl\": \"//market.m.taobao.com/app/detail-project/desc/index.html?id=652874751412&descVersion=6.0&type=0&f=icoss20268463799baa2cb0566f6f73&sellerType=C\", \"h5moduleDescUrl\": null, \"titleIcon\": \"\", \"taobaoPcDescUrl\": \"//market.m.taobao.com/app/detail-project/desc/index.html?id=652874751412&descVersion=6.0&type=1&f=icoss!0652874751412!12117659558&sellerType=C\", \"images\": [\"//img.alicdn.com/imgextra/i4/2568161054/O1CN01aYBriY1Jem9UDtt9e_!!2568161054.jpg\", \"//img.alicdn.com/imgextra/i3/2568161054/O1CN01kjOfNb1Jem9DmWn8Y_!!2568161054.jpg\", \"//img.alicdn.com/imgextra/i1/2568161054/O1CN01HoB9ha1Jem9DmWn8r_!!2568161054.jpg\", \"//img.alicdn.com/imgextra/i4/2568161054/O1CN011PjP2P1Jem9MXEUFT_!!2568161054.jpg\", \"//img.alicdn.com/imgextra/i3/2568161054/O1CN01KUfBFL1Jem9KTTMn1_!!2568161054.jpg\"], \"titleDesc\": null, \"moduleDescUrl\": null, \"tmallDescUrl\": \"//mdetail.tmall.com/templates/pages/desc?id=652874751412\", \"favcount\": 8026, \"countMultiple\": [], \"cartUrl\": \"https://h5.m.taobao.com/awp/base/cart.htm\", \"maxDonateCount\": null, \"themeType\": \"theme11\", \"commentCount\": 0, \"rootCategoryId\": \"50008164\", \"skuText\": \"请选择 颜色分类 几人坐 \", \"itemId\": 652874751412, \"moduleDescParams\": null, \"brandValueId\": \"1435187098\", \"subtitle\": null, \"categoryId\": \"50020632\", \"showShopActivitySize\": \"2\", \"vagueSellCount\": \"28\", \"containerDimension\": \"1:1\"}, \"trade\": {\"buyEnable\": \"true\", \"cartEnable\": \"true\", \"buyParam\": {}, \"cartParam\": {}, \"buyText\": \"立即购买\", \"subBuyText\": \"折后¥440起\", \"isBanSale4Oversea\": \"false\", \"cartJumpUrl\": \"https://h5.m.taobao.com/awp/base/cart.htm\"}, \"price\": {\"price\": {\"priceText\": \"480.00-3400.00\", \"type\": \"1\"}, \"extraPrices\": [{\"priceText\": \"480.00-3400.00\", \"priceTitle\": \"价格\", \"type\": \"2\", \"showTitle\": \"true\", \"lineThrough\": \"true\"}], \"newExtraPrices\": [{\"priceText\": \"480.00-3400.00\", \"priceTitle\": \"价格\", \"type\": \"2\", \"showTitle\": \"true\", \"lineThrough\": \"true\"}], \"priceTag\": [{\"text\": \"家装节价\", \"bgColor\": \"#FFF1EB\", \"textColor\": \"#FF5000\"}, {\"text\": \"淘金币可抵14.40元起\", \"bgColor\": \"#FFF1EB\", \"textColor\": \"#FF5000\"}], \"priceTip\": \"享3期免息,可免10.12元,每期146.67元(每日4.89元)\", \"transmitPrice\": {\"priceText\": \"480.00-3400.00\"}}, \"resource\": {\"entrances\": {}, \"newBigPromotion\": {}, \"shopProm\": [{\"iconText\": \"跨店满减\", \"icon\": \"//img.alicdn.com/tfs/TB1qX5SRFXXXXciXFXXXXXXXXXX-116-32.png\", \"title\": \"9/20-9/25每满200减20,上不封顶\", \"uuid4Cal\": \"2000000001-20000_2000-72939924231\", \"content\": [\"9/20-9/25每满200减20,上不封顶\"]}], \"bonus\": {\"shopProm\": {\"icon\": \"//img.alicdn.com/tfs/TB1qX5SRFXXXXciXFXXXXXXXXXX-116-32.png\", \"title\": \"9/20-9/25每满200减20,上不封顶\", \"useHuaBian\": \"false\", \"iconText\": \"跨店满减\"}, \"linkUrl\": \"https://pages.tmall.com/wow/malldetail/act/scene-rec?wh_weex=true&wh_biz=tm\"}, \"promsCalcInfo\": {\"hasCoupon\": \"false\", \"cheapestMoney\": \"0\"}, \"floatView\": {\"list\": []}}, \"consumerProtection\": {\"passValue\": \"all\", \"channel\": {\"logo\": \"//gw.alicdn.com/imgextra/i1/O1CN01hGDbl224lRyy3bau5_!!6000000007431-2-tps-161-48.png\", \"title\": \"让你的家更好看\"}, \"class\": \"com.alibaba.detailcache.result.vo.StaticConsumerProtectionVO\", \"items\": [{\"title\": \"不支持7天无理由\", \"desc\": \"此商品为定制,不支持7天无理由退货\"}, {\"title\": \"蚂蚁花呗\"}, {\"title\": \"信用卡支付\"}, {\"title\": \"集分宝\"}], \"channel4X\": {\"logo\": \"//gw.alicdn.com/imgextra/i1/O1CN01hGDbl224lRyy3bau5_!!6000000007431-2-tps-161-48.png\", \"title\": \"让你的家更好看\"}}, \"delivery\": {\"from\": \"江苏南通\", \"to\": \"全国\", \"completedTo\": \"\", \"areaId\": \"1\", \"postage\": \"平邮: 快递包邮\", \"extras\": {}, \"overseaContraBandFlag\": \"false\", \"addressWeexUrl\": \"https://market.m.taobao.com/apps/market/detailrax/address-picker.html?spm=a2116h.app.0.0.16d957e9nDYOzv&wh_weex=true\"}, \"vertical\": {\"askAll\": {\"askText\": \"请问有味道吗,家里有小孩子的推荐不\", \"askIcon\": \"https://img.alicdn.com/tps/TB1tVU6PpXXXXXFaXXXXXXXXXXX-102-60.png\", \"answerText\": \"没啥味道\", \"answerIcon\": \"https://img.alicdn.com/tps/TB1Z7c2LXXXXXXmaXXXXXXXXXXX-132-42.png\", \"linkUrl\": \"https://web.m.taobao.com/app/mtb/ask-everyone/list?pha=true&disableNav=YES&refId=652874751412\", \"title\": \"问大家(4)\", \"questNum\": \"4\", \"showNum\": \"2\", \"modelList\": [{\"askText\": \"请问有味道吗,家里有小孩子的推荐不\", \"answerCountText\": \"5个回答\", \"firstAnswer\": \"没啥味道\"}, {\"askText\": \"质量好不好请问\", \"answerCountText\": \"1个回答\", \"firstAnswer\": \"还可以\"}], \"model4XList\": [{\"askText\": \"请问有味道吗,家里有小孩子的推荐不\", \"answerCountText\": \"5个回答\", \"askIcon\": \"//gw.alicdn.com/tfs/TB1lneilZLJ8KJjy0FnXXcFDpXa-36-36.png\", \"askTextColor\": \"#162B36\"}, {\"askText\": \"质量好不好请问\", \"answerCountText\": \"1个回答\", \"askIcon\": \"//gw.alicdn.com/tfs/TB1lneilZLJ8KJjy0FnXXcFDpXa-36-36.png\", \"askTextColor\": \"#162B36\"}]}, \"buyerAlbum\": {\"title\": \"买家秀\", \"linkUrl\": \"https://huodong.taobao.com/wow/z/guang/buy/buyer-show?pha=true&disableNav=YES&itemId=652874751412\", \"count\": \"25\", \"modelList\": [{\"id\": \"366980740786\", \"picUrl\": \"//gw.alicdn.com/tfscom/O1CN01q515DP1JcUEsPuf37_!!0-rate.jpg\"}, {\"id\": \"378202043789\", \"picUrl\": \"//gw.alicdn.com/tfscom/O1CN01fQR3Ds1S1gycjLmVz_!!0-rate.jpg\"}, {\"id\": \"323042181020\", \"picUrl\": \"//gw.alicdn.com/tfscom/O1CN01VfIQ4M212cFPOmNJN_!!0-rate.jpg\"}, {\"id\": \"329436970528\", \"picUrl\": \"//gw.alicdn.com/tfscom/O1CN01dwB8Zm1yvcyr5uyKW_!!0-rate.jpg\"}]}, \"interactionBar\": {\"kapContain\": {\"suffix\": \"点赞\", \"count\": \"0\", \"likeList\": \"https://pages.tmall.com/wow/malldetail/act/detail-likelist?wh_biz=tm&wh_weex=true&itemId=652874751412\", \"dashangRecommendInfo\": {\"clickUrl\": \"https://market.m.taobao.com/app/mtb/ytq/pages/item-detail-young-tag?wh_weex=true\", \"rightIcon\": \"https://gw.alicdn.com/imgextra/i4/O1CN01b3i7qA1HCifFGgYVQ_!!6000000000722-2-tps-6-12.png\", \"bizType\": \"shop_rank\", \"tmallBangdanItemTag\": \"1712770\", \"tipStatus\": \"tmallBangdan\", \"tmmtInterestShare\": {\"headIconHeight\": \"16\", \"headIconRadius\": \"8\", \"atIcon\": \"https://gw.alicdn.com/imgextra/i4/O1CN01DmgVCP1sF8ZL1iv4L_!!6000000005736-2-tps-52-52.png\", \"bonusIcon\": \"https://gw.alicdn.com/imgextra/i3/O1CN01prugrW1pCROTKnEz8_!!6000000005324-2-tps-36-42.png\", \"headIconWidth\": \"16\"}, \"hasRecommendIcon\": \"https://img.alicdn.com/imgextra/i2/O1CN01gSAZ4R1HBnqrbCoiP_!!6000000000720-2-tps-63-63.png\", \"tipText2\": \"该商品入选本店人气收藏榜·第1名\", \"interactBarShare\": {\"leftIcon\": \"https://gw.alicdn.com/tfs/TB1kSgxKQY2gK0jSZFgXXc5OFXa-36-42.png?getAvatar=avatar\", \"tipIcon\": \"https://img.alicdn.com/tfs/TB1Hyggakcx_u4jSZFlXXXnUFXa-192-46.png?getAvatar=avatar\", \"tipText2\": \" \"}, \"tipClickUrl\": \"https://shop567158267.m.taobao.com/?shop_source_channel=shop_search_rank&rank_param=%7B%22itemId%22%3A652874751412%2C%22sellerId%22%3A2568161054%2C%22sourceType%22%3A%22detailTips%22%2C%22groupId%22%3A%222568161054_fav_list%22%2C%22groupInfo%22%3A%22%5B%7B%5C%22listId%5C%22%3A%5C%222568161054_fav_list%5C%22%2C%5C%22itemId%5C%22%3A%5B652874751412%5D%7D%5D%22%7D\", \"actionType\": \"itemEntryRank\", \"tipIcon\": \"https://gw.alicdn.com/imgextra/i2/O1CN01AZMDe71rj4oKY5EjI_!!6000000005666-2-tps-22-26.png\", \"taobaoBiguangItemTag\": \"2088066\", \"recommendIcon\": \"https://img.alicdn.com/imgextra/i3/O1CN01nQpy011dxovD9xGs8_!!6000000003803-2-tps-63-63.png\", \"shopHotSell\": {\"grayPercentage\": \"0\", \"secGrayPercentage\": \"5000\"}}, \"kaplist\": [{\"selected\": \"false\", \"icon\": \"https://gw.alicdn.com/tfs/TB1rGtkvpzqK1RjSZFvXXcB7VXa-90-90.png?getAvatar=avatar\", \"selectIcon\": \"https://gw.alicdn.com/tfs/TB193NrvAzoK1RjSZFlXXai4VXa-90-90.png?getAvatar=avatar\", \"listIcon\": \"https://gw.alicdn.com/tfs/TB1eHavyAvoK1RjSZFDXXXY3pXa-90-90.png\", \"title\": \"赞\", \"key\": \"thumbUp\"}, {\"selected\": \"false\", \"icon\": \"https://gw.alicdn.com/tfs/TB10dFlvCzqK1RjSZFHXXb3CpXa-90-90.png?getAvatar=avatar\", \"selectIcon\": \"https://gw.alicdn.com/tfs/TB1H8FkvwTqK1RjSZPhXXXfOFXa-90-90.png?getAvatar=avatar\", \"listIcon\": \"https://gw.alicdn.com/tfs/TB1H8FkvwTqK1RjSZPhXXXfOFXa-90-90.png?getAvatar=avatar\", \"title\": \"买买买\", \"key\": \"buy\"}, {\"selected\": \"false\", \"icon\": \"https://gw.alicdn.com/tfs/TB1pct8xmzqK1RjSZPxXXc4tVXa-90-90.png?getAvatar=avatar\", \"selectIcon\": \"https://gw.alicdn.com/tfs/TB1kTewxhnaK1RjSZFBXXcW7VXa-90-90.png?getAvatar=avatar\", \"listIcon\": \"https://gw.alicdn.com/tfs/TB1pct8xmzqK1RjSZPxXXc4tVXa-90-90.png?getAvatar=avatar\", \"title\": \"种个草\", \"key\": \"longFor\"}, {\"selected\": \"false\", \"icon\": \"https://gw.alicdn.com/tfs/TB10kVkvCzqK1RjSZFjXXblCFXa-90-90.png?getAvatar=avatar\", \"selectIcon\": \"https://gw.alicdn.com/tfs/TB12pJnvAvoK1RjSZFNXXcxMVXa-90-90.png?getAvatar=avatar\", \"listIcon\": \"https://gw.alicdn.com/tfs/TB12pJnvAvoK1RjSZFNXXcxMVXa-90-90.png?getAvatar=avatar\", \"title\": \"震惊了\", \"key\": \"shock\"}]}, \"bubbles\": [{\"title\": \"帮我选\", \"icon\": \"https://gw.alicdn.com/tfs/TB1NL9dvMDqK1RjSZSyXXaxEVXa-90-90.png?getAvatar=avatar\", \"action\": \"https://market.m.taobao.com/app/bwx/bwx/pages/create?wh_weex=true&itemId=652874751412&itemPic=i4/2568161054/O1CN01aYBriY1Jem9UDtt9e_!!2568161054.jpg\"}], \"share\": {\"iconType\": \"commonIconType\", \"icon\": \"https://img.alicdn.com/imgextra/i4/O1CN014i8QdX1kVbpxXHNpd_!!6000000004689-2-tps-63-63.png\", \"text\": \"分享\", \"extendMap\": {\"width\": \"20\", \"bucket\": \"OTHER\", \"height\": \"20\"}, \"needAsync\": \"false\", \"asyncShareConfigQueryDTO\": {}}}}, \"skuBase\": {\"skus\": [{\"skuId\": \"4881047531343\", \"propPath\": \"31480:14306495906;1627207:28321\", \"selected\": \"false\"}, {\"skuId\": \"4881047531344\", \"propPath\": \"31480:14306495907;1627207:28321\", \"selected\": \"false\"}, {\"skuId\": \"4881047531345\", \"propPath\": \"31480:14306495908;1627207:28321\", \"selected\": \"false\"}, {\"skuId\": \"4881047531346\", \"propPath\": \"31480:14306495909;1627207:28321\", \"selected\": \"false\"}, {\"skuId\": \"5039985183001\", \"propPath\": \"31480:21480914361;1627207:28321\", \"selected\": \"false\"}, {\"skuId\": \"5039985183002\", \"propPath\": \"31480:21480914362;1627207:28321\", \"selected\": \"false\"}, {\"skuId\": \"5039984824000\", \"propPath\": \"31480:1387571900;1627207:28321\", \"selected\": \"false\"}, {\"skuId\": \"5039985183003\", \"propPath\": \"31480:32527954;1627207:28321\", \"selected\": \"false\"}], \"props\": [{\"pid\": \"31480\", \"name\": \"几人坐\", \"values\": [{\"vid\": \"14306495906\", \"name\": \"脚踏90*60*48cm\", \"sortOrder\": \"0\"}, {\"vid\": \"14306495907\", \"name\": \"双人165*95*67cm\", \"sortOrder\": \"0\"}, {\"vid\": \"14306495908\", \"name\": \"三人210*95*67cm\", \"sortOrder\": \"0\"}, {\"vid\": \"14306495909\", \"name\": \"单人100*95*67cm\", \"sortOrder\": \"0\"}, {\"vid\": \"21480914361\", \"name\": \"四人位240*95*67cm\", \"sortOrder\": \"0\"}, {\"vid\": \"21480914362\", \"name\": \"大四人320*95*76cm\", \"sortOrder\": \"0\"}, {\"vid\": \"1387571900\", \"name\": \"3米贵妃沙发\", \"sortOrder\": \"0\"}, {\"vid\": \"32527954\", \"name\": \"定制尺寸\", \"sortOrder\": \"0\"}]}, {\"pid\": \"1627207\", \"name\": \"颜色分类\", \"values\": [{\"vid\": \"28321\", \"name\": \"乳白色 尺寸颜色可定制\", \"image\": \"http://img.alicdn.com/imgextra/i1/2568161054/O1CN017GTZ4h1Jem9Qra1ap_!!2568161054.jpg\", \"sortOrder\": \"0\"}]}]}, \"skuCore\": {\"sku2info\": {\"0\": {\"price\": {\"priceMoney\": \"48000\", \"priceText\": \"480.00-3400.00\", \"type\": \"1\"}, \"quantity\": \"200\", \"quantityText\": \"有货\", \"moreQuantity\": \"true\", \"quantityCheckTransParams\": {\"cipherQuantity\": \"td5mGKb8+HDv6yPiRu8MtpAu98czA1W8pzGBOD/WNg4=\"}, \"skuPromTip\": \"<font color=\\"#999999\\"> 当前商品可使用 </font><font color=\\"#FF5000\\"> 每满200减20 </font> <font color=\\"#999999\\"> 跨店优惠 </font>\"}, \"5039984824000\": {\"price\": {\"priceMoney\": \"340000\", \"priceText\": \"3400.00\", \"type\": \"1\"}, \"subPrice\": {\"priceMoney\": \"306000\", \"priceText\": \"3060\", \"priceTitle\": \"折后\", \"priceColor\": \"#FF4F00\", \"priceTitleColor\": \"#FF4F00\"}, \"quantity\": \"200\", \"quantityText\": \"有货\", \"moreQuantity\": \"true\", \"quantityCheckTransParams\": {\"cipherQuantity\": \"6fAtLneyGR68iCDW9hWVc3ooru+mrhXsZ5q4dPZUwBc=\"}, \"skuPromTip\": \"<font color=\\"#999999\\"> 当前商品可使用 </font><font color=\\"#FF5000\\"> 每满200减20 </font> <font color=\\"#999999\\"> 跨店优惠 </font>\", \"logisticsTime\": \"现货,付款后48小时内发货\"}, \"4881047531343\": {\"price\": {\"priceMoney\": \"48000\", \"priceText\": \"480.00\", \"type\": \"1\"}, \"subPrice\": {\"priceMoney\": \"44000\", \"priceText\": \"440\", \"priceTitle\": \"折后\", \"priceColor\": \"#FF4F00\", \"priceTitleColor\": \"#FF4F00\"}, \"quantity\": \"200\", \"quantityText\": \"有货\", \"moreQuantity\": \"true\", \"quantityCheckTransParams\": {\"cipherQuantity\": \"m0kLVHA12iwuNh8sycCARFkyoiBD4fnY0y2idDGqOMU=\"}, \"skuPromTip\": \"<font color=\\"#999999\\"> 当前商品可使用 </font><font color=\\"#FF5000\\"> 每满200减20 </font> <font color=\\"#999999\\"> 跨店优惠 </font>\", \"logisticsTime\": \"现货,付款后48小时内发货\"}, \"4881047531346\": {\"price\": {\"priceMoney\": \"96800\", \"priceText\": \"968.00\", \"type\": \"1\"}, \"subPrice\": {\"priceMoney\": \"88800\", \"priceText\": \"888\", \"priceTitle\": \"折后\", \"priceColor\": \"#FF4F00\", \"priceTitleColor\": \"#FF4F00\"}, \"quantity\": \"200\", \"quantityText\": \"有货\", \"moreQuantity\": \"true\", \"quantityCheckTransParams\": {\"cipherQuantity\": \"Qun1Xj+tzmzPxVgyUg0rt7tg2uBzdmuTf4n33CI1/EE=\"}, \"skuPromTip\": \"<font color=\\"#999999\\"> 当前商品可使用 </font><font color=\\"#FF5000\\"> 每满200减20 </font> <font color=\\"#999999\\"> 跨店优惠 </font>\", \"logisticsTime\": \"现货,付款后48小时内发货\"}, \"5039985183003\": {\"price\": {\"priceMoney\": \"300000\", \"priceText\": \"3000.00\", \"type\": \"1\"}, \"subPrice\": {\"priceMoney\": \"270000\", \"priceText\": \"2700\", \"priceTitle\": \"折后\", \"priceColor\": \"#FF4F00\", \"priceTitleColor\": \"#FF4F00\"}, \"quantity\": \"200\", \"quantityText\": \"有货\", \"moreQuantity\": \"true\", \"quantityCheckTransParams\": {\"cipherQuantity\": \"4ejGPv3Dk/fWsFPg7BVGuC8sbGmXnBajt6BvYBg9HMM=\"}, \"skuPromTip\": \"<font color=\\"#999999\\"> 当前商品可使用 </font><font color=\\"#FF5000\\"> 每满200减20 </font> <font color=\\"#999999\\"> 跨店优惠 </font>\", \"logisticsTime\": \"现货,付款后48小时内发货\"}, \"5039985183002\": {\"price\": {\"priceMoney\": \"318800\", \"priceText\": \"3188.00\", \"type\": \"1\"}, \"subPrice\": {\"priceMoney\": \"288800\", \"priceText\": \"2888\", \"priceTitle\": \"折后\", \"priceColor\": \"#FF4F00\", \"priceTitleColor\": \"#FF4F00\"}, \"quantity\": \"200\", \"quantityText\": \"有货\", \"moreQuantity\": \"true\", \"quantityCheckTransParams\": {\"cipherQuantity\": \"rmCS4LSC1RYr6qxOcGiCVbaf2u2MGXKNpxJzF+zn6Y0=\"}, \"skuPromTip\": \"<font color=\\"#999999\\"> 当前商品可使用 </font><font color=\\"#FF5000\\"> 每满200减20 </font> <font color=\\"#999999\\"> 跨店优惠 </font>\", \"logisticsTime\": \"现货,付款后48小时内发货\"}, \"4881047531344\": {\"price\": {\"priceMoney\": \"168800\", \"priceText\": \"1688.00\", \"type\": \"1\"}, \"subPrice\": {\"priceMoney\": \"152800\", \"priceText\": \"1528\", \"priceTitle\": \"折后\", \"priceColor\": \"#FF4F00\", \"priceTitleColor\": \"#FF4F00\"}, \"quantity\": \"135\", \"quantityText\": \"有货\", \"moreQuantity\": \"false\", \"skuPromTip\": \"<font color=\\"#999999\\"> 当前商品可使用 </font><font color=\\"#FF5000\\"> 每满200减20 </font> <font color=\\"#999999\\"> 跨店优惠 </font>\", \"logisticsTime\": \"现货,付款后48小时内发货\"}, \"5039985183001\": {\"price\": {\"priceMoney\": \"238800\", \"priceText\": \"2388.00\", \"type\": \"1\"}, \"subPrice\": {\"priceMoney\": \"216800\", \"priceText\": \"2168\", \"priceTitle\": \"折后\", \"priceColor\": \"#FF4F00\", \"priceTitleColor\": \"#FF4F00\"}, \"quantity\": \"200\", \"quantityText\": \"有货\", \"moreQuantity\": \"true\", \"quantityCheckTransParams\": {\"cipherQuantity\": \"sj01KyrRYxF21ZEcI9f44y/IzqF+4x5v6gdrJTu44Bk=\"}, \"skuPromTip\": \"<font color=\\"#999999\\"> 当前商品可使用 </font><font color=\\"#FF5000\\"> 每满200减20 </font> <font color=\\"#999999\\"> 跨店优惠 </font>\", \"logisticsTime\": \"现货,付款后48小时内发货\"}, \"4881047531345\": {\"price\": {\"priceMoney\": \"208800\", \"priceText\": \"2088.00\", \"type\": \"1\"}, \"subPrice\": {\"priceMoney\": \"188800\", \"priceText\": \"1888\", \"priceTitle\": \"折后\", \"priceColor\": \"#FF4F00\", \"priceTitleColor\": \"#FF4F00\"}, \"quantity\": \"197\", \"quantityText\": \"有货\", \"moreQuantity\": \"false\", \"skuPromTip\": \"<font color=\\"#999999\\"> 当前商品可使用 </font><font color=\\"#FF5000\\"> 每满200减20 </font> <font color=\\"#999999\\"> 跨店优惠 </font>\", \"logisticsTime\": \"现货,付款后48小时内发货\"}}, \"skuItem\": {\"showAddressTaobao\": \"true\", \"hideQuantity\": \"false\", \"location\": \"全国\", \"extraProm\": [{\"text\": \"享3期免息,可免10.12元,每期146.67元(每日4.89元)\"}]}, \"abSwitch\": {}, \"atmosphere\": {}}, \"promotionFloatingData\": {\"promotionName\": \"限时\", \"detailPromotionTimeDO\": {\"warmUpStartTime\": \"2023-09-19 00:00:00\", \"warmUpEndTime\": \"2023-09-20 20:00:00\", \"effectiveTime\": \"2023-09-20 20:00:00\", \"unEffectiveTime\": \"2023-09-25 23:59:59\", \"promotionType\": \"BIGMARKDOWN\"}, \"calculateResult\": {\"discount\": \"4000\", \"quanHouPrice\": \"440起\", \"usedPromotions\": [{\"promotionType\": \"9\", \"promotionUniqueId\": \"2000000001-20000_2000-72939924231\", \"discount\": \"4000\"}]}, \"showWarm\": \"true\", \"showNow\": \"true\", \"skuMoney\": {\"skuId\": \"4881047531343\", \"cent\": \"48000\"}, \"buyEnable\": \"true\"}, \"priceSectionData\": {\"mainBelt\": {\"promotionBeltColor\": \"#f15830\", \"priceTitlePrefix\": \"限时\", \"priceTitle\": \"活动价\", \"priceColor\": \"#f15830\", \"styleType\": \"2\", \"bizType\": \"2\", \"priceBeltColor\": \"#f15830\", \"priceBeltImg\": \"https://gw.alicdn.com/imgextra/i4/O1CN01Vswkrz1iMKllIP38B_!!6000000004398-2-tps-1125-210.png\", \"rightBelt\": {\"countdown\": \"1\", \"countDownStatus\": \"1\", \"countDownBackgroundColor\": \"#000000\", \"now\": \"1695447025480\", \"startTime\": \"1695211200000\", \"endTime\": \"1695657599000\", \"logo\": \"https://gw.alicdn.com/imgextra/i3/O1CN01mdfodH1izGQxT5ReV_!!6000000004483-2-tps-220-72.png\", \"text\": \"热卖中\", \"extraText\": \"下单立抢\", \"textColor\": \"#ffffff\", \"extraTextColor\": \"#ffffff\"}}, \"price\": {\"priceMoney\": \"48000\", \"priceText\": \"480.00\", \"priceTitle\": \"活动价\", \"priceTail\": \"起\", \"newLine\": \"false\", \"priceType\": \"origin_price\"}, \"priceType\": \"quanhou_price\", \"extraPrice\": {\"priceMoney\": \"44000\", \"priceText\": \"440.00\", \"priceTitle\": \"限时折后\", \"priceColor\": \"#f15830\", \"priceTail\": \"起\", \"priceBgColor\": \"#FFFFFF\", \"linkUrl\": \"https://market.m.taobao.com/app/detail-project/detail-pages/pages/quan2020?wh_weex=true\", \"newLine\": \"false\", \"priceType\": \"quanhou_price\"}, \"bizType\": \"p-bigMarkdown-*-online\", \"promotion\": {\"entranceTip\": \"查看\", \"items\": [{\"textColor\": \"#FD5F20\", \"content\": \"跨店每200减20\", \"type\": \"default\", \"couponType\": \"CrossShopManjian\", \"bgImage\": \"https://gw.alicdn.com/tfs/TB1.dqZSgHqK1RjSZJnXXbNLpXa-40-40.png\", \"startTime\": \"2023-09-20 20:00:00\", \"endTime\": \"2023-09-25 23:59:59\", \"sbgImage\": \"https://gw.alicdn.com/tfs/TB12R2Oerj1gK0jSZFuXXcrHpXa-302-80.png\", \"scontent\": \"跨店每200减20\"}, {\"textColor\": \"#FD5F20\", \"content\": \"淘金币可抵14.40元起\", \"type\": \"default\", \"couponType\": \"Taojinbi\", \"bgImage\": \"https://gw.alicdn.com/tfs/TB1.dqZSgHqK1RjSZJnXXbNLpXa-40-40.png\", \"sbgImage\": \"https://gw.alicdn.com/tfs/TB12R2Oerj1gK0jSZFuXXcrHpXa-302-80.png\", \"scontent\": \"淘金币可抵14.40元起\"}], \"entranceUrl\": \"https://market.m.taobao.com/app/detail-project/detail-pages/pages/quan2020?wh_weex=true\", \"promotionBeltColor\": \"#f15830\", \"promotionStyle\": \"false\"}}, \"hybrid\": {\"shopRecommendItems\": {\"url\": \"https://market.m.taobao.com/apps/market/detailrax/recommend-shop-bigpage.html?spm=a2116h.app.0.0.16d957e9B7oLGw&wh_weex=true&sellerId=2568161054&itemId=652874751412&detail_v=3.5.0&selfRmdFlag=true\", \"height\": \"445\", \"spm\": \"\"}}}}}"
    		},
    		"debug": {
    			"app": "alidetail",
    			"host": "detail033051120018.center.na610@36.57.128.89"
    		},
    		"item": {
    			"brandValueId": "1435187098",
    			"cartUrl": "https://h5.m.taobao.com/awp/base/cart.htm",
    			"categoryId": "50020632",
    			"commentCount": 0,
    			"containerDimension": "1:1",
    			"countMultiple": [],
    			"exParams": [],
    			"favcount": 8026,
    			"h5ItemUrl": "https://new.m.taobao.com/detail.htm?id=652874751412&hybrid=true",
    			"h5moduleDescUrl": null,
    			"images": [
    				"//img.alicdn.com/imgextra/i4/2568161054/O1CN01aYBriY1Jem9UDtt9e_!!2568161054.jpg",
    				"//img.alicdn.com/imgextra/i3/2568161054/O1CN01kjOfNb1Jem9DmWn8Y_!!2568161054.jpg",
    				"//img.alicdn.com/imgextra/i1/2568161054/O1CN01HoB9ha1Jem9DmWn8r_!!2568161054.jpg",
    				"//img.alicdn.com/imgextra/i4/2568161054/O1CN011PjP2P1Jem9MXEUFT_!!2568161054.jpg",
    				"//img.alicdn.com/imgextra/i3/2568161054/O1CN01KUfBFL1Jem9KTTMn1_!!2568161054.jpg"
    			],
    			"itemId": 652874751412,
    			"logo": null,
    			"maxDonateCount": null,
    			"moduleDescParams": null,
    			"moduleDescUrl": null,
    			"openDecoration": false,
    			"pcADescUrl": "//market.m.taobao.com/app/detail-project/desc/index.html?id=652874751412&descVersion=7.0&type=1&f=icoss!0652874751412!12117659558&sellerType=C",
    			"rootCategoryId": "50008164",
    			"shortTitle": null,
    			"showShopActivitySize": "2",
    			"skuText": "请选择 颜色分类 几人坐 ",
    			"subtitle": null,
    			"taobaoDescUrl": "//market.m.taobao.com/app/detail-project/desc/index.html?id=652874751412&descVersion=6.0&type=0&f=icoss20268463799baa2cb0566f6f73&sellerType=C",
    			"taobaoPcDescUrl": "//market.m.taobao.com/app/detail-project/desc/index.html?id=652874751412&descVersion=6.0&type=1&f=icoss!0652874751412!12117659558&sellerType=C",
    			"themeType": "theme11",
    			"title": "北欧轻奢布艺沙发 小户型简约现代客厅ins风网红款三双人订制沙发",
    			"titleDesc": null,
    			"titleIcon": "",
    			"tmallDescUrl": "//mdetail.tmall.com/templates/pages/desc?id=652874751412",
    			"vagueSellCount": "28",
    			"videos": null
    		},
    		"mockData": "{\"delivery\":{},\"trade\":{\"buyEnable\":true,\"cartEnable\":true},\"feature\":{\"hasSku\":true,\"showSku\":true},\"price\":{\"price\":{\"priceText\":\"480.00\"}},\"skuCore\":{\"sku2info\":{\"0\":{\"price\":{\"priceMoney\":48000,\"priceText\":\"480.00\",\"priceTitle\":\"价格\"},\"quantity\":800},\"5039984824000\":{\"price\":{\"priceMoney\":340000,\"priceText\":\"3400.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"4881047531343\":{\"price\":{\"priceMoney\":48000,\"priceText\":\"480.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"4881047531346\":{\"price\":{\"priceMoney\":96800,\"priceText\":\"968.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5039985183003\":{\"price\":{\"priceMoney\":300000,\"priceText\":\"3000.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5039985183002\":{\"price\":{\"priceMoney\":318800,\"priceText\":\"3188.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"4881047531344\":{\"price\":{\"priceMoney\":168800,\"priceText\":\"1688.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"5039985183001\":{\"price\":{\"priceMoney\":238800,\"priceText\":\"2388.00\",\"priceTitle\":\"价格\"},\"quantity\":100},\"4881047531345\":{\"price\":{\"priceMoney\":208800,\"priceText\":\"2088.00\",\"priceTitle\":\"价格\"},\"quantity\":100}},\"skuItem\":{\"hideQuantity\":true}}}",
    		"params": {
    			"aliAbTestTrackParams": {
    				"recommend2018": "[{\"abtest\":\"5154_4504\",\"component\":\"recommendNewVersion\",\"releaseId\":5154,\"module\":\"2018\",\"cm\":\"recommendNewVersion_2018\",\"experimentId\":2021,\"bucketId\":4504,\"trackConfigs\":\"[]\"}]"
    			},
    			"trackEventParams": null,
    			"trackParams": {
    				"aliBizCode": "ali.china.taobao.jiyoujia",
    				"aliBizCodeToken": "YWxpLmNoaW5hLnRhb2Jhby5qaXlvdWppYQ==",
    				"businessTracks": "%7B%7D",
    				"detailUniqueId": "434c7daa430af2a2e6a34fe5c5b3436d",
    				"detailabtestdetail": "431429_70420.5154_4504.406315_135053",
    				"itemId": "652874751412",
    				"layoutId": null,
    				"price1": "480.00",
    				"price2": "440",
    				"price3": null,
    				"price4": null,
    				"promotionType": "p-bigMarkdown-*-online",
    				"skuId": "4881047531343",
    				"spm": "a2141.7631563.1.detail",
    				"traceId": "215042aa16954470253021673e15be"
    			},
    			"umbParams": {
    				"aliBizCode": "ali.china.taobao.jiyoujia",
    				"aliBizName": "ali.china.taobao.jiyoujia"
    			}
    		},
    		"price": {
    			"extraPrices": [
    				{
    					"lineThrough": "true",
    					"priceText": "480.00-3400.00",
    					"priceTitle": "价格",
    					"showTitle": "true",
    					"type": "2"
    				}
    			],
    			"newExtraPrices": [
    				{
    					"lineThrough": "true",
    					"priceText": "480.00-3400.00",
    					"priceTitle": "价格",
    					"showTitle": "true",
    					"type": "2"
    				}
    			],
    			"price": {
    				"priceText": "480.00-3400.00",
    				"type": "1"
    			},
    			"priceTag": [
    				{
    					"bgColor": "#FFF1EB",
    					"text": "家装节价",
    					"textColor": "#FF5000"
    				},
    				{
    					"bgColor": "#FFF1EB",
    					"text": "淘金币可抵14.40元起",
    					"textColor": "#FF5000"
    				}
    			],
    			"priceTip": "享3期免息,可免10.12元,每期146.67元(每日4.89元)",
    			"transmitPrice": {
    				"priceText": "480.00-3400.00"
    			}
    		},
    		"props": {
    			"groupProps": [
    				{
    					"基本信息": [
    						{
    							"品牌": "#0 工厂"
    						},
    						{
    							"型号": "520"
    						},
    						{
    							"材质": "木"
    						},
    						{
    							"木质材质": "松木"
    						},
    						{
    							"面料": "绒布"
    						},
    						{
    							"风格": "北欧"
    						},
    						{
    							"几人坐": "脚踏90*60*48cm,双人165*95*67cm,三人210*95*67cm,单人100*95*67cm,四人位240*95*67cm,大四人320*95*76cm,3米贵妃沙发,定制尺寸"
    						},
    						{
    							"颜色分类": "乳白色"
    						},
    						{
    							"填充物": "海绵"
    						},
    						{
    							"结构工艺": "木质工艺"
    						},
    						{
    							"是否可定制": "是"
    						},
    						{
    							"沙发组合形式": "U形"
    						},
    						{
    							"是否可拆洗": "是"
    						},
    						{
    							"适用对象": "成年人"
    						},
    						{
    							"是否带储物空间": "否"
    						},
    						{
    							"产地": "上海"
    						},
    						{
    							"地市": "上海市"
    						},
    						{
    							"区县": "奉贤区"
    						},
    						{
    							"是否组装": "否"
    						},
    						{
    							"出租车是否可运输": "否"
    						},
    						{
    							"填充物硬度": "软"
    						},
    						{
    							"款式定位": "经济型"
    						}
    					]
    				}
    			]
    		},
    		"props2": [],
    		"propsCut": "品牌 型号 材质 木质材质 面料 风格 几人坐 颜色分类 填充物 结构工艺 是否可定制 沙发组合形式 是否可拆洗 适用对象 是否带储物空间 产地 地市 区县 是否组装 出租车是否可运输 填充物硬度 款式定位 ",
    		"rate": {
    			"keywords": [
    				{
    					"attribute": "60051064-11",
    					"count": "12",
    					"type": "1",
    					"word": "质量很好"
    				},
    				{
    					"attribute": "60121002-11",
    					"count": "12",
    					"type": "1",
    					"word": "外观做工很好"
    				},
    				{
    					"attribute": "60041039-11",
    					"count": "4",
    					"type": "1",
    					"word": "做工精细"
    				},
    				{
    					"attribute": "60261000-11",
    					"count": "3",
    					"type": "1",
    					"word": "性价比很高"
    				},
    				{
    					"attribute": "60081030-11",
    					"count": "4",
    					"type": "1",
    					"word": "舒适感很爽"
    				},
    				{
    					"attribute": "60191002-11",
    					"count": "7",
    					"type": "1",
    					"word": "客服服务很好"
    				}
    			],
    			"keywordsMultiLevel": null,
    			"propRate": null,
    			"rateList": [
    				{
    					"blackCardUserUrl": null,
    					"content": "直观感受:看着挺好看 使用舒适度:挺舒服 ",
    					"createTimeInterval": "6天前",
    					"dateTime": "2023-09-16",
    					"feedId": "1218056560928",
    					"headExtraPic": null,
    					"headPic": "//img.alicdn.com/imgextra/i4/O1CN01GbZNxl26Vzotrjqli_!!6000000007668-2-tps-160-160.png",
    					"images": null,
    					"isVip": "false",
    					"media": null,
    					"mediaExtText": null,
    					"memberIcon": null,
    					"memberLevel": "6",
    					"skuInfo": "几人坐:四人位240*95*67cm;颜色分类:乳白色[尺寸颜色可定制]",
    					"tmallMemberLevel": 0,
    					"userName": "匿名买家",
    					"userStarPic": null
    				},
    				{
    					"blackCardUserUrl": "//img.alicdn.com/tfs/TB1wrG1elv0gK0jSZKbXXbK2FXa-225-96.png",
    					"class": "com.alibaba.detailcache.result.vo.StaticRateVO$RateInfoVO",
    					"content": "沙发质量不错,做工精细",
    					"createTimeInterval": "1个月前",
    					"dateTime": "2023-07-29",
    					"feedId": "1214597518957",
    					"headExtraPic": null,
    					"headPic": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN84GK7wS8eNzq5KYMVKvUXKjomjrCWn79amVy1odptA5BZxuvUJt97p9oFkfEs6bSRKCjMTMYDNFD4hH1qS2sFu671A2wEsv1oiBdjHPW6DWyrJg4hjpiRQyScAvTtNEGPyjyK1UZvrGC8eXYN6K23aBg4waYK9nmTmB",
    					"images": null,
    					"isVip": "true",
    					"media": null,
    					"mediaExtText": null,
    					"memberIcon": null,
    					"memberLevel": "7",
    					"skuInfo": "颜色分类:乳白色[尺寸颜色可定制];几人坐:三人210*95*67cm",
    					"tmallMemberLevel": 0,
    					"userName": "aliceyiya哟",
    					"userStarPic": null
    				}
    			],
    			"totalCount": "500+",
    			"utFeedId": "1218056560928_1214597518957"
    		},
    		"resource": {
    			"bonus": {
    				"linkUrl": "https://pages.tmall.com/wow/malldetail/act/scene-rec?wh_weex=true&wh_biz=tm",
    				"shopProm": {
    					"icon": "//img.alicdn.com/tfs/TB1qX5SRFXXXXciXFXXXXXXXXXX-116-32.png",
    					"iconText": "跨店满减",
    					"title": "9/20-9/25每满200减20,上不封顶",
    					"useHuaBian": "false"
    				}
    			},
    			"entrances": [],
    			"floatView": {
    				"list": []
    			},
    			"newBigPromotion": [],
    			"promsCalcInfo": {
    				"cheapestMoney": "0",
    				"hasCoupon": "false"
    			},
    			"shopProm": [
    				{
    					"content": [
    						"9/20-9/25每满200减20,上不封顶"
    					],
    					"icon": "//img.alicdn.com/tfs/TB1qX5SRFXXXXciXFXXXXXXXXXX-116-32.png",
    					"iconText": "跨店满减",
    					"title": "9/20-9/25每满200减20,上不封顶",
    					"uuid4Cal": "2000000001-20000_2000-72939924231"
    				}
    			]
    		},
    		"seller": {
    			"allItemCount": "45",
    			"atmophereMask": false,
    			"atmosphereColor": "#ffffff",
    			"atmosphereMaskColor": null,
    			"brandIcon": null,
    			"brandIconRatio": null,
    			"certIcon": null,
    			"certText": null,
    			"certification": null,
    			"creditLevel": "9",
    			"creditLevelIcon": "//gw.alicdn.com/tfs/TB1zg2CixrI8KJjy0FpXXb5hVXa-132-24.png",
    			"entranceList": [
    				{
    					"action": [
    						{
    							"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntranceParamsKey",
    							"key": "open_url",
    							"params": {
    								"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntranceParams",
    								"trackName": null,
    								"trackNamePre": null,
    								"trackParams": null,
    								"url": "//shop.m.taobao.com/shop/shop_index.htm?user_id=2568161054&item_id=652874751412&currentClickTime=-1"
    							}
    						},
    						{
    							"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntranceParamsKey",
    							"key": "user_track",
    							"params": {
    								"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntranceParams",
    								"trackName": "Button-NewShopcard-ShopPage",
    								"trackNamePre": null,
    								"trackParams": {
    									"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntranceTrackParams",
    									"spm": "a.2141.7631564.shoppage"
    								},
    								"url": null
    							}
    						}
    					],
    					"backgroundColor": "#ffffff",
    					"backgroundImg": null,
    					"borderColor": "#FF5000",
    					"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntrance",
    					"text": "进店逛逛",
    					"textColor": "#FF5000"
    				},
    				{
    					"action": [
    						{
    							"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntranceParamsKey",
    							"key": "open_url",
    							"params": {
    								"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntranceParams",
    								"trackName": null,
    								"trackNamePre": null,
    								"trackParams": null,
    								"url": "//shop.m.taobao.com/shop/shop_index.htm?user_id=2568161054&item_id=652874751412&shop_navi=allitems"
    							}
    						},
    						{
    							"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntranceParamsKey",
    							"key": "user_track",
    							"params": {
    								"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntranceParams",
    								"trackName": "Button-NewShopcard-AllItem",
    								"trackNamePre": null,
    								"trackParams": {
    									"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntranceTrackParams",
    									"spm": "a.2141.7631564.allitem"
    								},
    								"url": null
    							}
    						}
    					],
    					"backgroundColor": "#ffffff",
    					"backgroundImg": null,
    					"borderColor": "#FF5000",
    					"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopEntrance",
    					"text": "全部宝贝",
    					"textColor": "#FF5000"
    				}
    			],
    			"evaluates": [
    				{
    					"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopDsrVO",
    					"level": "1",
    					"levelBackgroundColor": "#FFF1EB",
    					"levelText": "高",
    					"levelTextColor": "#FF5000",
    					"score": "4.9 ",
    					"scoreTextColor": null,
    					"title": "宝贝描述",
    					"titleColor": null,
    					"tmallLevelBackgroundColor": "#FFF1EB",
    					"tmallLevelText": null,
    					"tmallLevelTextColor": "#FF0036",
    					"type": "desc"
    				},
    				{
    					"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopDsrVO",
    					"level": "1",
    					"levelBackgroundColor": "#FFF1EB",
    					"levelText": "高",
    					"levelTextColor": "#FF5000",
    					"score": "4.9 ",
    					"scoreTextColor": null,
    					"title": "卖家服务",
    					"titleColor": null,
    					"tmallLevelBackgroundColor": "#FFF1EB",
    					"tmallLevelText": null,
    					"tmallLevelTextColor": "#FF0036",
    					"type": "serv"
    				},
    				{
    					"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopDsrVO",
    					"level": "1",
    					"levelBackgroundColor": "#FFF1EB",
    					"levelText": "高",
    					"levelTextColor": "#FF5000",
    					"score": "4.9 ",
    					"scoreTextColor": null,
    					"title": "物流服务",
    					"titleColor": null,
    					"tmallLevelBackgroundColor": "#FFF1EB",
    					"tmallLevelText": null,
    					"tmallLevelTextColor": "#FF0036",
    					"type": "post"
    				}
    			],
    			"evaluates2": [
    				{
    					"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopDsrVO",
    					"level": "1",
    					"levelBackgroundColor": null,
    					"levelText": "高",
    					"levelTextColor": "#FF7333",
    					"score": "4.9 ",
    					"scoreTextColor": "#999999",
    					"title": "宝贝描述",
    					"titleColor": "#999999",
    					"tmallLevelBackgroundColor": null,
    					"tmallLevelText": null,
    					"tmallLevelTextColor": null,
    					"type": "desc"
    				},
    				{
    					"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopDsrVO",
    					"level": "1",
    					"levelBackgroundColor": null,
    					"levelText": "高",
    					"levelTextColor": "#FF7333",
    					"score": "4.9 ",
    					"scoreTextColor": "#999999",
    					"title": "卖家服务",
    					"titleColor": "#999999",
    					"tmallLevelBackgroundColor": null,
    					"tmallLevelText": null,
    					"tmallLevelTextColor": null,
    					"type": "serv"
    				},
    				{
    					"class": "com.alibaba.detailcache.result.vo.StaticSellerVO$ShopDsrVO",
    					"level": "1",
    					"levelBackgroundColor": null,
    					"levelText": "高",
    					"levelTextColor": "#FF7333",
    					"score": "4.9 ",
    					"scoreTextColor": "#999999",
    					"title": "物流服务",
    					"titleColor": "#999999",
    					"tmallLevelBackgroundColor": null,
    					"tmallLevelText": null,
    					"tmallLevelTextColor": null,
    					"type": "post"
    				}
    			],
    			"fans": "689",
    			"fbt2User": "惜情yqq1127",
    			"goodRatePercentage": "99.89%",
    			"isShowCertIcon": null,
    			"newItemCount": 9,
    			"pcShopUrl": "//shop567158267.taobao.com",
    			"sellerIntroduction": null,
    			"sellerNick": "惜情yqq1127",
    			"sellerType": "C",
    			"shopCard": "掌柜近期上新9件宝贝,速览",
    			"shopIcon": "//img.alicdn.com/imgextra//i2/O1CN017D9cAn1Jem2jOJ68Y_!!0-guide.jpg",
    			"shopId": 567158267,
    			"shopName": "现代布艺沙发",
    			"shopTextColor": "#111111",
    			"shopTitleIcon": null,
    			"shopType": "C",
    			"shopUrl": "tmall://page.tm/shop?item_id=652874751412&shopId=567158267",
    			"shopVersion": 0,
    			"showShopLinkIcon": false,
    			"simpleShopDOStatus": "1",
    			"starts": null,
    			"tagIcon": "//gtms02.alicdn.com/tps/i2/TB1tFeOJFXXXXXdXVXXf2K3IVXX-80-24.png",
    			"taoShopUrl": "//shop.m.taobao.com/shop/shop_index.htm?user_id=2568161054&item_id=652874751412",
    			"userId": "2568161054"
    		},
    		"skuBase": {
    			"props": [
    				{
    					"name": "几人坐",
    					"pid": "31480",
    					"values": [
    						{
    							"name": "脚踏90*60*48cm",
    							"sortOrder": "0",
    							"vid": "14306495906"
    						},
    						{
    							"name": "双人165*95*67cm",
    							"sortOrder": "0",
    							"vid": "14306495907"
    						},
    						{
    							"name": "三人210*95*67cm",
    							"sortOrder": "0",
    							"vid": "14306495908"
    						},
    						{
    							"name": "单人100*95*67cm",
    							"sortOrder": "0",
    							"vid": "14306495909"
    						},
    						{
    							"name": "四人位240*95*67cm",
    							"sortOrder": "0",
    							"vid": "21480914361"
    						},
    						{
    							"name": "大四人320*95*76cm",
    							"sortOrder": "0",
    							"vid": "21480914362"
    						},
    						{
    							"name": "3米贵妃沙发",
    							"sortOrder": "0",
    							"vid": "1387571900"
    						},
    						{
    							"name": "定制尺寸",
    							"sortOrder": "0",
    							"vid": "32527954"
    						}
    					]
    				},
    				{
    					"name": "颜色分类",
    					"pid": "1627207",
    					"values": [
    						{
    							"image": "http://img.alicdn.com/imgextra/i1/2568161054/O1CN017GTZ4h1Jem9Qra1ap_!!2568161054.jpg",
    							"name": "乳白色 尺寸颜色可定制",
    							"sortOrder": "0",
    							"vid": "28321"
    						}
    					]
    				}
    			],
    			"skus": [
    				{
    					"propPath": "31480:14306495906;1627207:28321",
    					"selected": "false",
    					"skuId": "4881047531343"
    				},
    				{
    					"propPath": "31480:14306495907;1627207:28321",
    					"selected": "false",
    					"skuId": "4881047531344"
    				},
    				{
    					"propPath": "31480:14306495908;1627207:28321",
    					"selected": "false",
    					"skuId": "4881047531345"
    				},
    				{
    					"propPath": "31480:14306495909;1627207:28321",
    					"selected": "false",
    					"skuId": "4881047531346"
    				},
    				{
    					"propPath": "31480:21480914361;1627207:28321",
    					"selected": "false",
    					"skuId": "5039985183001"
    				},
    				{
    					"propPath": "31480:21480914362;1627207:28321",
    					"selected": "false",
    					"skuId": "5039985183002"
    				},
    				{
    					"propPath": "31480:1387571900;1627207:28321",
    					"selected": "false",
    					"skuId": "5039984824000"
    				},
    				{
    					"propPath": "31480:32527954;1627207:28321",
    					"selected": "false",
    					"skuId": "5039985183003"
    				}
    			]
    		},
    		"vertical": {
    			"askAll": {
    				"answerIcon": "https://img.alicdn.com/tps/TB1Z7c2LXXXXXXmaXXXXXXXXXXX-132-42.png",
    				"answerText": "没啥味道",
    				"askIcon": "https://img.alicdn.com/tps/TB1tVU6PpXXXXXFaXXXXXXXXXXX-102-60.png",
    				"askText": "请问有味道吗,家里有小孩子的推荐不",
    				"linkUrl": "https://web.m.taobao.com/app/mtb/ask-everyone/list?pha=true&disableNav=YES&refId=652874751412",
    				"model4XList": [
    					{
    						"answerCountText": "5个回答",
    						"askIcon": "//gw.alicdn.com/tfs/TB1lneilZLJ8KJjy0FnXXcFDpXa-36-36.png",
    						"askText": "请问有味道吗,家里有小孩子的推荐不",
    						"askTextColor": "#162B36"
    					},
    					{
    						"answerCountText": "1个回答",
    						"askIcon": "//gw.alicdn.com/tfs/TB1lneilZLJ8KJjy0FnXXcFDpXa-36-36.png",
    						"askText": "质量好不好请问",
    						"askTextColor": "#162B36"
    					}
    				],
    				"modelList": [
    					{
    						"answerCountText": "5个回答",
    						"askText": "请问有味道吗,家里有小孩子的推荐不",
    						"firstAnswer": "没啥味道"
    					},
    					{
    						"answerCountText": "1个回答",
    						"askText": "质量好不好请问",
    						"firstAnswer": "还可以"
    					}
    				],
    				"questNum": "4",
    				"showNum": "2",
    				"title": "问大家(4)"
    			},
    			"buyerAlbum": {
    				"count": "25",
    				"linkUrl": "https://huodong.taobao.com/wow/z/guang/buy/buyer-show?pha=true&disableNav=YES&itemId=652874751412",
    				"modelList": [
    					{
    						"id": "366980740786",
    						"picUrl": "//gw.alicdn.com/tfscom/O1CN01q515DP1JcUEsPuf37_!!0-rate.jpg"
    					},
    					{
    						"id": "378202043789",
    						"picUrl": "//gw.alicdn.com/tfscom/O1CN01fQR3Ds1S1gycjLmVz_!!0-rate.jpg"
    					},
    					{
    						"id": "323042181020",
    						"picUrl": "//gw.alicdn.com/tfscom/O1CN01VfIQ4M212cFPOmNJN_!!0-rate.jpg"
    					},
    					{
    						"id": "329436970528",
    						"picUrl": "//gw.alicdn.com/tfscom/O1CN01dwB8Zm1yvcyr5uyKW_!!0-rate.jpg"
    					}
    				],
    				"title": "买家秀"
    			},
    			"interactionBar": {
    				"bubbles": [
    					{
    						"action": "https://market.m.taobao.com/app/bwx/bwx/pages/create?wh_weex=true&itemId=652874751412&itemPic=i4/2568161054/O1CN01aYBriY1Jem9UDtt9e_!!2568161054.jpg",
    						"icon": "https://gw.alicdn.com/tfs/TB1NL9dvMDqK1RjSZSyXXaxEVXa-90-90.png?getAvatar=avatar",
    						"title": "帮我选"
    					}
    				],
    				"kapContain": {
    					"count": "0",
    					"dashangRecommendInfo": {
    						"actionType": "itemEntryRank",
    						"bizType": "shop_rank",
    						"clickUrl": "https://market.m.taobao.com/app/mtb/ytq/pages/item-detail-young-tag?wh_weex=true",
    						"hasRecommendIcon": "https://img.alicdn.com/imgextra/i2/O1CN01gSAZ4R1HBnqrbCoiP_!!6000000000720-2-tps-63-63.png",
    						"interactBarShare": {
    							"leftIcon": "https://gw.alicdn.com/tfs/TB1kSgxKQY2gK0jSZFgXXc5OFXa-36-42.png?getAvatar=avatar",
    							"tipIcon": "https://img.alicdn.com/tfs/TB1Hyggakcx_u4jSZFlXXXnUFXa-192-46.png?getAvatar=avatar",
    							"tipText2": " "
    						},
    						"recommendIcon": "https://img.alicdn.com/imgextra/i3/O1CN01nQpy011dxovD9xGs8_!!6000000003803-2-tps-63-63.png",
    						"rightIcon": "https://gw.alicdn.com/imgextra/i4/O1CN01b3i7qA1HCifFGgYVQ_!!6000000000722-2-tps-6-12.png",
    						"shopHotSell": {
    							"grayPercentage": "0",
    							"secGrayPercentage": "5000"
    						},
    						"taobaoBiguangItemTag": "2088066",
    						"tipClickUrl": "https://shop567158267.m.taobao.com/?shop_source_channel=shop_search_rank&rank_param=%7B%22itemId%22%3A652874751412%2C%22sellerId%22%3A2568161054%2C%22sourceType%22%3A%22detailTips%22%2C%22groupId%22%3A%222568161054_fav_list%22%2C%22groupInfo%22%3A%22%5B%7B%5C%22listId%5C%22%3A%5C%222568161054_fav_list%5C%22%2C%5C%22itemId%5C%22%3A%5B652874751412%5D%7D%5D%22%7D",
    						"tipIcon": "https://gw.alicdn.com/imgextra/i2/O1CN01AZMDe71rj4oKY5EjI_!!6000000005666-2-tps-22-26.png",
    						"tipStatus": "tmallBangdan",
    						"tipText2": "该商品入选本店人气收藏榜·第1名",
    						"tmallBangdanItemTag": "1712770",
    						"tmmtInterestShare": {
    							"atIcon": "https://gw.alicdn.com/imgextra/i4/O1CN01DmgVCP1sF8ZL1iv4L_!!6000000005736-2-tps-52-52.png",
    							"bonusIcon": "https://gw.alicdn.com/imgextra/i3/O1CN01prugrW1pCROTKnEz8_!!6000000005324-2-tps-36-42.png",
    							"headIconHeight": "16",
    							"headIconRadius": "8",
    							"headIconWidth": "16"
    						}
    					},
    					"kaplist": [
    						{
    							"icon": "https://gw.alicdn.com/tfs/TB1rGtkvpzqK1RjSZFvXXcB7VXa-90-90.png?getAvatar=avatar",
    							"key": "thumbUp",
    							"listIcon": "https://gw.alicdn.com/tfs/TB1eHavyAvoK1RjSZFDXXXY3pXa-90-90.png",
    							"selectIcon": "https://gw.alicdn.com/tfs/TB193NrvAzoK1RjSZFlXXai4VXa-90-90.png?getAvatar=avatar",
    							"selected": "false",
    							"title": "赞"
    						},
    						{
    							"icon": "https://gw.alicdn.com/tfs/TB10dFlvCzqK1RjSZFHXXb3CpXa-90-90.png?getAvatar=avatar",
    							"key": "buy",
    							"listIcon": "https://gw.alicdn.com/tfs/TB1H8FkvwTqK1RjSZPhXXXfOFXa-90-90.png?getAvatar=avatar",
    							"selectIcon": "https://gw.alicdn.com/tfs/TB1H8FkvwTqK1RjSZPhXXXfOFXa-90-90.png?getAvatar=avatar",
    							"selected": "false",
    							"title": "买买买"
    						},
    						{
    							"icon": "https://gw.alicdn.com/tfs/TB1pct8xmzqK1RjSZPxXXc4tVXa-90-90.png?getAvatar=avatar",
    							"key": "longFor",
    							"listIcon": "https://gw.alicdn.com/tfs/TB1pct8xmzqK1RjSZPxXXc4tVXa-90-90.png?getAvatar=avatar",
    							"selectIcon": "https://gw.alicdn.com/tfs/TB1kTewxhnaK1RjSZFBXXcW7VXa-90-90.png?getAvatar=avatar",
    							"selected": "false",
    							"title": "种个草"
    						},
    						{
    							"icon": "https://gw.alicdn.com/tfs/TB10kVkvCzqK1RjSZFjXXblCFXa-90-90.png?getAvatar=avatar",
    							"key": "shock",
    							"listIcon": "https://gw.alicdn.com/tfs/TB12pJnvAvoK1RjSZFNXXcxMVXa-90-90.png?getAvatar=avatar",
    							"selectIcon": "https://gw.alicdn.com/tfs/TB12pJnvAvoK1RjSZFNXXcxMVXa-90-90.png?getAvatar=avatar",
    							"selected": "false",
    							"title": "震惊了"
    						}
    					],
    					"likeList": "https://pages.tmall.com/wow/malldetail/act/detail-likelist?wh_biz=tm&wh_weex=true&itemId=652874751412",
    					"suffix": "点赞"
    				},
    				"share": {
    					"asyncShareConfigQueryDTO": [],
    					"extendMap": {
    						"bucket": "OTHER",
    						"height": "20",
    						"width": "20"
    					},
    					"icon": "https://img.alicdn.com/imgextra/i4/O1CN014i8QdX1kVbpxXHNpd_!!6000000004689-2-tps-63-63.png",
    					"iconType": "commonIconType",
    					"needAsync": "false",
    					"text": "分享"
    				}
    			}
    		},
    		"app_ver": "4.0.0-7.0",
    		"_ddf": "ti",
    		"app_ver_check": "ok",
    		"format_check": "ok"
    	},
    	"error": "",
    	"secache": "3a3ff14576763971ea8d878457952bbf",
    	"secache_time": 1695447025,
    	"secache_date": "2023-09-23 13:30:25",
    	"reason": "",
    	"error_code": "0000",
    	"cache": 0,
    	"api_info": "today:15 max:10100 all[55=15+13+27];expires:2030-12-31",
    	"execution_time": "1.003",
    	"server_time": "Beijing/2023-09-23 13:30:25",
    	"client_ip": "106.6.36.101",
    	"call_args": {
    		"num_iid": "652874751412"
    	},
    	"api_type": "taobao",
    	"translate_language": "zh-CN",
    	"translate_engine": "baidu",
    	"server_memory": "6.24MB",
    	"request_id": "3.650e77f0ac1dc",
    	"last_id": "2059739732"
    	}
    异常示例
    {
    		"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(微信同号)