万邦抖音获取抖音商品原数据 API 返回值说明

item_get_app-获取抖音商品原数据 [查看演示] API测试工具 注册开通

douyin.item_get_app(Ver:1.0.0-3.0)

  • douyin.item_get_app-1.0.0-1.0.html
  • douyin.item_get_app-1.0.0-2.0.html
  • douyin.item_get_app-1.0.0-3.0.html
  • douyin.item_get_app-1.0.0-4.0.html
  • douyin.item_get_app-1.0.0-5.0.html
  • douyin.item_get_app-1.0.0-6.0.html
  • douyin.item_get_app-1.0.0-6.1.html
  • douyin.item_get_app-1.0.0-6.2.html
  • 公共参数

    请求地址: https://api-gw.onebound.cn/douyin/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=3514453298386183303

    参数说明:num_iid:抖音商品ID

    响应参数

    Version: Date:

    名称 类型 必须 示例值 描述
    item
    Mix 0 获得某音商品详情原数据
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303";
    $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" =>"douyin",
    	                "api_name" =>"item_get_app",
    	                "api_params"=>array (
      'num_iid' => '3514453298386183303',
    )
                    )
                );
     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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303";
    		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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303";
    	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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303"
    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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303", 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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"3514453298386183303"})// 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":"douyin",
         "api_name" : "item_get_app",
         "api_params": {"num_iid":"3514453298386183303"}//num_iid=3514453298386183303,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303")
    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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303")!
    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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303"];
    
    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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303";
      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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303");
             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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303", (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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303")
        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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303")
    content(r)
    url = "https://api-gw.onebound.cn/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303";
    response = webread(url);
    disp(response);
    
    响应示例
    {
        "item":{
            "promotions":[
                {
                    "product_price":{
                        "max_price":9990,
                        "discount_price":{
                            "header":"券后",
                            "discount_min_price":6990,
                            "discount_max_price":7990
                        },
                        "min_price":8990
                    },
                    "buy_buttons":[
                        {
                            "links":{
                                "h5_url":"sslocal://webcast_lynxview?type=fullscreen&enable_font_scale=1&hide_nav_bar=1&status_bar_color=black&status_bar_bg_color=white&web_bg_color=%23ffffff&top_level=1&add_safe_area_height=0&enable_pad_adapter=1&screen_size_adaptation=1&android_soft_input_mode=48&trans_status_bar=1&disable_bounce=1&hide_back_button=1&hide_bar=1&bounce_disable=1&disable_bounces=1&hide_back_close=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_buynow_aweme%2Fapp%2Ftemplate.js&new_source_type=product_detail&shape=0&origin_id=99514375927_3633601778009913449&alkey=1128_99514375927_0_3633601778009913449_010&ec_order_prefetch=1&c_biz_combo=8&id=3633601778009913449&shop_id=xdYyLHNE&origin_type=3002002002&group_id=0&mega_object=%7B%22entrance_info%22%3A%22%22%7D&schema_log_id=20240130144059AB8E023B5A1D0303D0FE&source_page=product_detail_page&eztf_sdk_extra=%7B%22schema_log_id%22%3A%2220240130144059AB8E023B5A1D0303D0FE%22%2C%22is_side_car%22%3A%221%22%2C%22source_page%22%3A%22product_detail_page%22%2C%22sdk_version%22%3A%22v0_2_22%22%2C%22caller_psm%22%3A%22ecom.product.pack%22%7D&api_migration_gray=1",
                                "small_app_url":"sslocal://microapp?version=v2&app_id=tt7cca0a77e3e0cd15&scene=027002&version_type=current&start_page=pages%2Fproduct-pay%2Fproduct-pay%3Falkey%3D1128_99514375927_0_3633601778009913449_010%26c_biz_combo%3D8%26disable_activity%3D0%26new_source_type%3Dproduct_detail%26origin_id%3D99514375927_3633601778009913449%26origin_type%3D3002002002%26product_id%3D3633601778009913449&bdp_log=%7B%22launch_from%22%3A%22others_homepage%22%2C%22location%22%3A%22store_entrance%22%7D&bdpsum=974deec",
                                "group_h5_url":"sslocal://webcast_lynxview?type=fullscreen&enable_font_scale=1&hide_nav_bar=1&status_bar_color=black&status_bar_bg_color=white&web_bg_color=%23ffffff&top_level=1&add_safe_area_height=0&enable_pad_adapter=1&screen_size_adaptation=1&android_soft_input_mode=48&trans_status_bar=1&disable_bounce=1&hide_back_button=1&hide_bar=1&bounce_disable=1&disable_bounces=1&hide_back_close=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_buynow_aweme%2Fapp%2Ftemplate.js&new_source_type=product_detail&shape=0&origin_id=99514375927_3633601778009913449&alkey=1128_99514375927_0_3633601778009913449_010&ec_order_prefetch=1&c_biz_combo=8&id=3633601778009913449&shop_id=xdYyLHNE&origin_type=3002002002&group_id=0&mega_object=%7B%22entrance_info%22%3A%22%22%7D&schema_log_id=20240130144059AB8E023B5A1D0303D0FE&source_page=product_detail_page&eztf_sdk_extra=%7B%22schema_log_id%22%3A%2220240130144059AB8E023B5A1D0303D0FE%22%2C%22is_side_car%22%3A%221%22%2C%22source_page%22%3A%22product_detail_page%22%2C%22sdk_version%22%3A%22v0_2_22%22%2C%22caller_psm%22%3A%22ecom.product.pack%22%7D&api_migration_gray=1"
                            },
                            "text":"领券购买",
                            "order_status":1
                        }
                    ],
                    "privilege_info":{
                        "services":[
                            {
                                "title":"7天无理由退货",
                                "content":"符合相应条件时,消费者可申请7天无理由退货",
                                "icon":"https://p6.ecombdimg.com/img/temai/full_return.png~tplv-5mmsx3fupr-image.png",
                                "service_type":6
                            },
                            {
                                "title":"极速退款",
                                "content":"满足相应条件时,待发货状态下,提交退款申请将免审核立即退款",
                                "icon":"https://p9.ecombdimg.com/img/eden-cn/nupfupebo/services/QuickRefund.png~tplv-5mmsx3fupr-image.png",
                                "service_type":5
                            },
                            {
                                "service_type":101059,
                                "top_show":true,
                                "hybrid_schema":"sslocal://webcast_webview?gravity=bottom&add_safe_area_height=0&use_real_screen_height=1&use_wk_falcon=1&loader_name=forest&top_level=1&type=popup&mask_alpha=0.5&height_percent=73&width_percent=100&open_animate=1&web_bg_color=00ffffff&status_bar_color=ffffff&hide_nav_bar=1&loading_bgcolor=00ffffff&should_full_screen=0&hide_status_bar=0&status_bar_color=ffffff&status_font_dark=1&url=https%3A%2F%2Fffh.jinritemai.com%2Frender%2Fecom_rights_description_h5%2Ftemplate%2Fnew-user-protection%2Findex.html%3Fscene_code%3DProductInfo%26privilege_ip%3Dplatform_newcomer",
                                "title":"新人保障",
                                "content":"",
                                "icon":"https://p9.ecombdimg.com/img/eden-cn/hyhohzeh7psvhpelpe/ecom/page_tag/detail/platform_newcomer_top.png~tplv-5mmsx3fupr-image.png",
                                "url":"sslocal://webcast_webview?gravity=bottom&add_safe_area_height=0&use_real_screen_height=1&use_wk_falcon=1&loader_name=forest&top_level=1&type=popup&mask_alpha=0.5&height_percent=73&width_percent=100&open_animate=1&web_bg_color=00ffffff&status_bar_color=ffffff&hide_nav_bar=1&loading_bgcolor=00ffffff&should_full_screen=0&hide_status_bar=0&status_bar_color=ffffff&status_font_dark=1&url=https%3A%2F%2Fffh.jinritemai.com%2Frender%2Fecom_rights_description_h5%2Ftemplate%2Fnew-user-protection%2Findex.html%3Fscene_code%3DProductInfo%26privilege_ip%3Dplatform_newcomer"
                            },
                            {
                                "title":"本商品享受上述商家服务",
                                "content":"点击查看平台公示专区",
                                "url":"https://mix.jinritemai.com/falcon/mix_page/index.html?__live_platform__=webcast&allowMediaAutoPlay=1&enter_from=others&hide_nav_bar=1&hide_system_video_poster=1&id=7117178766052294949&origin_type=others&should_full_screen=1&trans_status_bar=1&ttwebview_extension_mixrender=1",
                                "tag":"public_zone",
                                "service_type":10
                            }
                        ],
                        "logistics":{
                            "fast_dispatch":0,
                            "arrive_time":0,
                            "middle_text":"",
                            "logistic_lines":[
                                {
                                    "logistic_items":[
                                        {
                                            "item_type":1,
                                            "text":"预计6小时内从湖北省天门市发货,包邮"
                                        }
                                    ]
                                }
                            ],
                            "post_fee":0,
                            "send_from":"48小时内从湖北省天门市发货",
                            "post_fee_text":"包邮",
                            "logistic_text":[
                                "预计6小时内从湖北省天门市发货,包邮"
                            ]
                        },
                        "coupons":{
                            "coupon_meta_labels":[
                                "满49减20"
                            ],
                            "discount_labels":[
                                {
                                    "id":"7281308668330754356",
                                    "is_show":0,
                                    "kol_user_tag":0,
                                    "ui_type":0,
                                    "tag":"满49减20",
                                    "tag_header":"券",
                                    "type":130
                                }
                            ]
                        },
                        "activities":[
    
                        ],
                        "exclusive":null
                    },
                    "comment_info":{
                        "good_ratio":"0",
                        "buyer_show":{
                            "title":"买家秀",
                            "amount":684,
                            "buyer_show_data":[
                                {
                                    "id":1680727575002874139,
                                    "type":2,
                                    "video_poster":{
                                        "vid":"v038cdg10000cm96abrc77u7q77plne0",
                                        "main_url":"https://v5-i.douyinvod.com/7180ebc129444534a4e949031c9c341d/65b8c441/video/tos/cn/tos-cn-ve-2253/o8kkDQvIn8ZUmB1ugDbKC0ga1eo5ClAMAP41ek/?a=1128&ch=0&cr=3&dr=0&cd=0%7C0%7C0%7C3&cv=1&br=434&bt=434&cs=2&ds=6&eid=22528&ft=~iiRCzzKhWH6BS5U6DLo0PD1&mime_type=video_mp4&qs=11&rc=OzQ6ODY5PGgzNDtnOjtkN0BpM3FzOjo6ZmU5cDMzNGc7M0BhL2I0NGNiNV8xYGBiMmItYSNiaTRucjRvXjZgLS1kYDBzcw%3D%3D&btag=10e00095200&cdn_n80=1&dy_q=1706596859&feature_id=22eebe935d739141bc75f57beca62d29&l=20240130144059AB8E023B5A1D0303D0FE",
                                        "backup_url":"https://v3.douyinvod.com/88d5f64c2cc9bbab0389d4e1df2e1a00/65b8c441/video/tos/cn/tos-cn-ve-2253/o8kkDQvIn8ZUmB1ugDbKC0ga1eo5ClAMAP41ek/?a=1128&ch=0&cr=3&dr=0&cd=0%7C0%7C0%7C3&cv=1&br=434&bt=434&cs=2&ds=6&eid=22528&ft=~iiRCzzKhWH6BS5U6DLo0PD1&mime_type=video_mp4&qs=11&rc=OzQ6ODY5PGgzNDtnOjtkN0BpM3FzOjo6ZmU5cDMzNGc7M0BhL2I0NGNiNV8xYGBiMmItYSNiaTRucjRvXjZgLS1kYDBzcw%3D%3D&btag=10e00090000&cc=20&dy_q=1706596859&feature_id=22eebe935d739141bc75f57beca62d29&l=20240130144059AB8E023B5A1D0303D0FE",
                                        "width":576,
                                        "height":1024,
                                        "duration":22767,
                                        "poster_url":"https://p6-sign.douyinpic.com/tos-cn-p-2253/oUlzfHwPAdEE5Sr42nWWCDIfQRJzNSgeZeVplM~tplv-noop.image?dy_q=1706596859&l=20240130144059AB8E023B5A1D0303D0FE&x-expires=1706607681&x-signature=C7hK6isEQSo8tKW77sHNVuXBcy4%3D"
                                    }
                                },
                                {
                                    "type":2,
                                    "video_poster":{
                                        "poster_url":"https://p6-sign.douyinpic.com/tos-cn-p-2253/ocyVhWBLLAYEOBfaBAWINJrApoGNQztFBh0zhP~tplv-noop.image?dy_q=1706596859&l=20240130144059AB8E023B5A1D0303D0FE&x-expires=1706607668&x-signature=cQ0TuWk7b9hG6tzQlZi3JvW3tlE%3D",
                                        "vid":"v028cdg10000cl0t15rc77u15j9lco7g",
                                        "main_url":"https://v5-i.douyinvod.com/b571e396c30bd5945f5e1c7bc8c203db/65b8c434/video/tos/cn/tos-cn-ve-2253/ok0lQgnZQABDCcEmbMCgI2T81deXCegCGFs1Cq/?a=1128&ch=0&cr=3&dr=0&cd=0%7C0%7C0%7C3&cv=1&br=951&bt=951&cs=2&ds=6&eid=22528&ft=~iiRCzzKhWH6BS5U6DLo0PD1&mime_type=video_mp4&qs=11&rc=NDU3ZDMzaDw8aTc1Zjw3NkBpanJvbTQ6Zjh3bzMzNGc7M0AuNmIxYDUxXy4xYl5eYi81YSM0YDYycjRvLi1gLS1kYC9zcw%3D%3D&btag=10e0008d200&cdn_n80=1&dy_q=1706596859&feature_id=22eebe935d739141bc75f57beca62d29&l=20240130144059AB8E023B5A1D0303D0FE",
                                        "backup_url":"https://v3.douyinvod.com/11f9c9bc9d2587d1273727881465a3c9/65b8c434/video/tos/cn/tos-cn-ve-2253/ok0lQgnZQABDCcEmbMCgI2T81deXCegCGFs1Cq/?a=1128&ch=0&cr=3&dr=0&cd=0%7C0%7C0%7C3&cv=1&br=951&bt=951&cs=2&ds=6&eid=22528&ft=~iiRCzzKhWH6BS5U6DLo0PD1&mime_type=video_mp4&qs=11&rc=NDU3ZDMzaDw8aTc1Zjw3NkBpanJvbTQ6Zjh3bzMzNGc7M0AuNmIxYDUxXy4xYl5eYi81YSM0YDYycjRvLi1gLS1kYC9zcw%3D%3D&btag=10e00088000&cc=20&dy_q=1706596859&feature_id=22eebe935d739141bc75f57beca62d29&l=20240130144059AB8E023B5A1D0303D0FE",
                                        "width":576,
                                        "height":1024,
                                        "duration":9915
                                    },
                                    "id":1259250134706225418
                                },
                                {
                                    "type":1,
                                    "photo_poster":{
                                        "url":"https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/418aea2129c91046aefd4cb3c1b57e99~tplv-fceoirpogb-re_cp:960:0:q100.jpeg?lk3s=e100c300&x-expires=1707201659&x-signature=uTjSAiMvFd931USRr3PdpVmMOc0%3D",
                                        "thumbnail":"https://p6-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/418aea2129c91046aefd4cb3c1b57e99~tplv-fceoirpogb-re_cp:240:0:q100.jpeg?lk3s=e100c300&x-expires=1707201659&x-signature=esKnCsXL4Rn5r9p0D4J3kA2Iyz8%3D",
                                        "width":0,
                                        "height":0
                                    },
                                    "id":4719652371523846463
                                },
                                {
                                    "id":3989383686259736841,
                                    "type":2,
                                    "video_poster":{
                                        "height":960,
                                        "duration":15301,
                                        "poster_url":"https://p6-sign.douyinpic.com/tos-cn-p-2253/oYEB7eEupehnnWrBrbrC1mZCAGDTBRfQqKsTIi~tplv-noop.image?dy_q=1706596859&l=20240130144059AB8E023B5A1D0303D0FE&x-expires=1706607674&x-signature=mOL1iDnt6HvJfTQaJkegplEYYYw%3D",
                                        "vid":"v038cdg10000cltlkrjc77u18dd64l8g",
                                        "main_url":"https://v5-i.douyinvod.com/35521b9a9eec8ca3f1b4b034206b6f42/65b8c43a/video/tos/cn/tos-cn-ve-2253/osVfRGAiIZah90B3QNBQ7EapyohW1zO0vQhQBg/?a=1128&ch=0&cr=3&dr=0&cd=0%7C0%7C0%7C3&br=819&bt=819&cs=0&ds=3&ft=~iiRCzzKhWH6BS5U6DLo0PD1&mime_type=video_mp4&qs=0&rc=OzxmOTg0aTg6NWc3Njs1N0Bpam85ZzQ6ZnVvbzMzNGc7M0AxNS4xL2IwNjYxNS8tMmMxYSM1MWE1cjRnaHFgLS1kYDBzcw%3D%3D&btag=10e00095200&cdn_n80=1&dy_q=1706596859&feature_id=f0150a16a324336cda5d6dd0b69ed299&l=20240130144059AB8E023B5A1D0303D0FE",
                                        "backup_url":"https://v3.douyinvod.com/e07036e95360728f47817507533ad3c5/65b8c43a/video/tos/cn/tos-cn-ve-2253/osVfRGAiIZah90B3QNBQ7EapyohW1zO0vQhQBg/?a=1128&ch=0&cr=3&dr=0&cd=0%7C0%7C0%7C3&br=819&bt=819&cs=0&ds=3&ft=~iiRCzzKhWH6BS5U6DLo0PD1&mime_type=video_mp4&qs=0&rc=OzxmOTg0aTg6NWc3Njs1N0Bpam85ZzQ6ZnVvbzMzNGc7M0AxNS4xL2IwNjYxNS8tMmMxYSM1MWE1cjRnaHFgLS1kYDBzcw%3D%3D&btag=10e00090000&cc=20&dy_q=1706596859&feature_id=f0150a16a324336cda5d6dd0b69ed299&l=20240130144059AB8E023B5A1D0303D0FE",
                                        "width":720
                                    }
                                },
                                {
                                    "photo_poster":{
                                        "url":"https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/224b524cba5207d83770832212020bda~tplv-fceoirpogb-re_cp:960:0:q100.jpeg?lk3s=e100c300&x-expires=1707201659&x-signature=y1FfZw5NJinvNqcjh9wtk%2FjImHI%3D",
                                        "thumbnail":"https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/224b524cba5207d83770832212020bda~tplv-fceoirpogb-re_cp:240:0:q100.jpeg?lk3s=e100c300&x-expires=1707201659&x-signature=IANPW9r7s%2B9FYRfpKbkC1SbpZeI%3D",
                                        "width":0,
                                        "height":0
                                    },
                                    "id":6355150079003017472,
                                    "type":1
                                }
                            ]
                        },
                        "qa_info":null,
                        "comments":[
                            {
                                "user_type":12,
                                "user_name":"果**0",
                                "rank_product":5,
                                "content":"鱼尾连衣裙收到了,质量很好,很柔软!加绒加厚的,穿上很暖和!很喜欢!",
                                "user_id":0,
                                "user_avatar":{
                                    "uri":"https://p26.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_87d5748007f04927b5ff7ee448c02ba2.jpeg?from=4010531038",
                                    "url_list":[
                                        "https://p26.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_87d5748007f04927b5ff7ee448c02ba2.jpeg?from=4010531038"
                                    ]
                                },
                                "likes":5,
                                "rank_logistic":5,
                                "tags":[
                                    {
                                        "tag_type":2,
                                        "tag_text":"LV3"
                                    }
                                ],
                                "product_id":0,
                                "parent_id":0,
                                "app_id":1128,
                                "recommend":false,
                                "id":1680727575002874139,
                                "comment_time":"2024-01-01 15:10:48",
                                "liked":false,
                                "rank":15,
                                "rank_shop":5,
                                "shop_reply":""
                            },
                            {
                                "id":4692602735845097780,
                                "parent_id":0,
                                "likes":24,
                                "shop_reply":"",
                                "recommend":false,
                                "rank_shop":4,
                                "rank_logistic":4,
                                "photos":[
                                    {
                                        "url":"https://p26-sign.douyinpic.com/douyin-user-image-file/cdb2374fa3c04a9acffe46c0c6066466~tplv-shrink:3240:3240.webp?x-expires=1707242400&x-signature=nLsaoXqX%2FDosC%2BcpIl%2F16aT%2BVfs%3D&from=3630503595",
                                        "thumbnail":"https://p9-sign.douyinpic.com/douyin-user-image-file/cdb2374fa3c04a9acffe46c0c6066466~tplv-shrink:507:507.webp?x-expires=1707242400&x-signature=fquqUUYE%2FTf54iRG96dBCoov0kk%3D&from=3630503595"
                                    },
                                    {
                                        "url":"https://p11-sign.douyinpic.com/douyin-user-image-file/5022cdf3216411143fe3b57ac318b5fb~tplv-shrink:3240:3240.webp?x-expires=1707242400&x-signature=rAtZvvDsRzC8lCtF5DL5UHhecLA%3D&from=3630503595",
                                        "thumbnail":"https://p26-sign.douyinpic.com/douyin-user-image-file/5022cdf3216411143fe3b57ac318b5fb~tplv-shrink:507:507.webp?x-expires=1707242400&x-signature=otpejBBC%2FTfJgvVAhN6lZfusszg%3D&from=3630503595"
                                    },
                                    {
                                        "url":"https://p3-sign.douyinpic.com/douyin-user-image-file/90b3c4026044c4e6fe2e945c6f828b62~tplv-shrink:3240:3240.webp?x-expires=1707242400&x-signature=Fz1Hd5Sm6nDhbq1OYwc%2Bz4ZMPXI%3D&from=3630503595",
                                        "thumbnail":"https://p3-sign.douyinpic.com/douyin-user-image-file/90b3c4026044c4e6fe2e945c6f828b62~tplv-shrink:507:507.webp?x-expires=1707242400&x-signature=IRQ4oSDiTi8KPebatnN3wYPOh3I%3D&from=3630503595"
                                    },
                                    {
                                        "url":"https://p26-sign.douyinpic.com/douyin-user-image-file/5c60ea4a043b031504cef00b90edf6e1~tplv-shrink:3240:3240.webp?x-expires=1707242400&x-signature=I5juV8%2FRYlb7vip04QNKqzk4GLQ%3D&from=3630503595",
                                        "thumbnail":"https://p3-sign.douyinpic.com/douyin-user-image-file/5c60ea4a043b031504cef00b90edf6e1~tplv-shrink:507:507.webp?x-expires=1707242400&x-signature=URdi9IPOQ9lI0%2FyQOURo2AZfj7s%3D&from=3630503595"
                                    },
                                    {
                                        "url":"https://p26-sign.douyinpic.com/douyin-user-image-file/bf4fb531d01f2463eddc9b1df16df474~tplv-shrink:3240:3240.webp?x-expires=1707242400&x-signature=7DJE4kaB4OnSwLekm5YIvl4V2jI%3D&from=3630503595",
                                        "thumbnail":"https://p3-sign.douyinpic.com/douyin-user-image-file/bf4fb531d01f2463eddc9b1df16df474~tplv-shrink:507:507.webp?x-expires=1707242400&x-signature=xNmcM3CEJ4Qcs4Gh8NOjG3b%2Bq8w%3D&from=3630503595"
                                    }
                                ],
                                "comment_time":"2023-11-11 21:06:18",
                                "user_id":0,
                                "user_name":"一**6",
                                "user_avatar":{
                                    "uri":"https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/c4e71ebbb1d933b57ae4ba51808476db.png~tplv-fceoirpogb-image.image",
                                    "url_list":[
                                        "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/c4e71ebbb1d933b57ae4ba51808476db.png~tplv-fceoirpogb-image.image"
                                    ]
                                },
                                "app_id":1128,
                                "rank_product":5,
                                "tags":[
                                    {
                                        "tag_type":2,
                                        "tag_text":"LV2"
                                    }
                                ],
                                "product_id":0,
                                "content":"身高160.体重102.缺点:没胸夸大屁股厚\n可以搭毛衣,搭大衣,当然单传,也很好看裙子的缺点就是黑色沾毛然后长度你们可以看一下我哪个位置,反正70块,总体来说还不错,还有就是屁股连接腰那块是窝进去的我身材不好,所以这一点还是挺明显的,就感觉下半体有点丑是自身问题不是裙子问题哈",
                                "user_type":12,
                                "liked":false,
                                "rank":13
                            }
                        ],
                        "tags":[
                            {
                                "sentiment":1,
                                "count_number":3680,
                                "tag_name":"回头客",
                                "id":10001
                            },
                            {
                                "id":91,
                                "sentiment":1,
                                "count_number":828,
                                "tag_name":"效果很好"
                            },
                            {
                                "id":39,
                                "sentiment":1,
                                "count_number":810,
                                "tag_name":"外观好看"
                            }
                        ],
                        "total_count":18086,
                        "shop_comment_stats":{
                            "good_count":32608,
                            "good_ratio":"88.07735940791962",
                            "praise_rate":8709,
                            "tags":[
                                {
                                    "id":10001,
                                    "sentiment":1,
                                    "count_number":10009,
                                    "tag_name":"回头客"
                                },
                                {
                                    "id":12,
                                    "sentiment":1,
                                    "count_number":783,
                                    "tag_name":"推荐"
                                },
                                {
                                    "id":14,
                                    "sentiment":1,
                                    "count_number":646,
                                    "tag_name":"物美价廉"
                                }
                            ],
                            "total_count":37439
                        },
                        "rotation_comments":null,
                        "stats":[
                            {
                                "id":2,
                                "caption":"有图/视频",
                                "count":2038,
                                "title":"有图/视频 2038"
                            },
                            {
                                "id":3,
                                "caption":"好评",
                                "count":15407,
                                "title":"好评 1.5万"
                            },
                            {
                                "id":4,
                                "caption":"中评",
                                "count":2049,
                                "title":"中评 2049"
                            },
                            {
                                "id":6,
                                "caption":"差评",
                                "count":467,
                                "title":"差评 467"
                            }
                        ]
                    },
                    "entry_info":{
                        "author_avatar":{
                            "uri":"720x720/aweme-avatar/tos-cn-avt-0015_602ddb92dcc1c54326628345b6bde757",
                            "url_list":[
                                "https://p6.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_602ddb92dcc1c54326628345b6bde757.jpeg?from=4010531038",
                                "https://p26.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_602ddb92dcc1c54326628345b6bde757.jpeg?from=4010531038",
                                "https://p3.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_602ddb92dcc1c54326628345b6bde757.jpeg?from=4010531038"
                            ]
                        },
                        "author_name":"集美今天穿什么",
                        "live_entry":{
                            "living":true,
                            "nav_link":"sslocal://webcast_room/?ecom_live_params=%7B%22multi_room_data%22%3A%7B%22ecom_scene_id%22%3A%221003%22%7D%2C%22should_not_show_panel%22%3A%221%22%7D&ecom_live_params=%7B%22params_version%22%3A1%2C%22jump_schema%22%3A%22sslocal%3A%2F%2Fec_live_list%2F%3Fextra%3D%257B%2522related_info%2522%253A%2522%257B%255C%2522detail_product_id%255C%2522%253A%255C%25223633601778009913449%255C%2522%257D%2522%252C%2522live_list_channel%2522%253A%2522product_detail_shown%2522%257D%22%2C%22live_list_channel%22%3A%22product_detail_shown%22%7D&room_id=7329707185410149131&user_id=99514375927",
                            "log_extras":"{\"anchor_id\":\"99514375927\",\"room_id\":\"7329707185410149131\"}"
                        },
                        "referrer":{
                            "author_avatar":{
                                "url_list":null
                            },
                            "author_id":0,
                            "author_name":""
                        },
                        "store_entry":{
                            "shop_logo":{
                                "url_list":[
                                    "https://p3-item.ecombdimg.com/img/tos-cn-i-6vegkygxbk/b291746ab15a4cdb89ebe945c16c2342~tplv-5mmsx3fupr-resize:111:111.webp",
                                    "https://p26-item.ecombdimg.com/img/tos-cn-i-6vegkygxbk/b291746ab15a4cdb89ebe945c16c2342~tplv-5mmsx3fupr-resize:111:111.webp"
                                ],
                                "width":111,
                                "height":111,
                                "uri":"tos-cn-i-6vegkygxbk/b291746ab15a4cdb89ebe945c16c2342"
                            },
                            "nav_link":"sslocal://goods/store?sec_shop_id=xdYyLHNE&entrance_location=product_detail&url_maker=shop_sdk&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D",
                            "brand_info":[
    
                            ],
                            "sell_rating_info":{
                                "has_data":true,
                                "score":{
                                    "score":4.7,
                                    "rating":"高",
                                    "percentage":0.8204
                                },
                                "goods_score":{
                                    "score":4.8,
                                    "rating":"高",
                                    "percentage":0.8133
                                },
                                "service_score":{
                                    "rating":"低",
                                    "percentage":0.3051,
                                    "score":4.3
                                },
                                "logistics_score":{
                                    "percentage":0.9745,
                                    "score":5,
                                    "rating":"高"
                                },
                                "text":"店铺口碑"
                            },
                            "sell_num":570964,
                            "shop_name":"思蜜妲服饰"
                        },
                        "shop_bind_author":{
                            "author_id":2643643454731652,
                            "author_name":"集美今天穿什么",
                            "author_avatar":{
                                "uri":"720x720/aweme-avatar/tos-cn-avt-0015_602ddb92dcc1c54326628345b6bde757",
                                "url_list":[
                                    "https://p6.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_602ddb92dcc1c54326628345b6bde757.jpeg?from=4010531038",
                                    "https://p26.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_602ddb92dcc1c54326628345b6bde757.jpeg?from=4010531038",
                                    "https://p3.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_602ddb92dcc1c54326628345b6bde757.jpeg?from=4010531038"
                                ]
                            },
                            "nav_link":"aweme://user/profile/2643643454731652"
                        },
                        "subsidy_entry":null
                    },
                    "extra_info":{
                        "im_url":"aweme://ecomcs_im/chat?selfId=4433652530554055&store_id=&store_name=&shop_tag=&theOtherId=xdYyLHNE&fromSource=1&fromOrder=&fromGoods=3633601778009913449&extraParams=&entrance_info=&marketing_channel=&request_additions=%7B%22enter_from%22%3A%22store_page%22%2C%22sec_author_id%22%3A%22MS4wLjABAAAA2I9NdgAKZrz9e0tLm1csyDMNqLESPDm34TdYYqXe8-I%22%2C%22author_id%22%3A%2299514375927%22%7D&live_room_id=0&enter_from=store_page&promotion_id=3633601778009913449&meta_params=&author_id=99514375927&channel_id=0&channel_type=0&fromGoods=3633601778009913449&promotion_id=3633601778009913449&item_id=0&origin_id=99514375927_3633601778009913449&origin_type=3002002002&alkey=1128_99514375927_0_3633601778009913449_010&c_biz_combo=8",
                        "cart_url":"sslocal://webcast_webview?type=fullscreen&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecom_cart_yata_h5%2Fhtml%2Ffull-cart%2Findex.html%3Fnew_source_type%3Dproduct_detail%26ecom_scene_id%3D1003%26__pia_manifest__%3D%257B%2522worker%2522%253Atrue%252C%2522page_name%2522%253A%2522full-cart%2522%252C%2522public_path%2522%253A%2522https%253A%252F%252Flf-webcast-sourcecdn-tos.bytegecko.com%252Fobj%252Fbyte-gurd-source%252F10181%252Fgecko%252Fresource%252Fecom_cart_yata_h5%252F%2522%257D&use_wk_falcon=1&use_pia=1&hide_nav_bar=1&status_bar_color=black&trans_status_bar=1&web_bg_color=%23FFFFFF&top_level=1&disable_input_scroll=1&disable_host_jsb_method=1&disable_thread_spread=1&warmup_pia_worker=1&loader_name=forest&enable_pad_adapter=1",
                        "detail_url":"https://haohuo.jinritemai.com/ecommerce/trade/detail/index.html?id=3633601778009913449&origin_type=3002002002&origin_id=99514375927_3633601778009913449&alkey=1128_99514375927_0_3633601778009913449_010&sec_author_id=MS4wLjABAAAA2I9NdgAKZrz9e0tLm1csyDMNqLESPDm34TdYYqXe8-I&from_link=1&c_biz_combo=8&use_link_command=1&goods_detail=%7B%22title%22%3A%22%E3%80%90%E6%80%9D%E8%9C%9C%E5%A6%B2%E3%80%912023%E6%96%B0%E6%AC%BE%E8%BF%9E%E8%A1%A3%E8%A3%99%E6%B0%94%E8%B4%A8%E7%99%BE%E6%90%AD%E6%94%B6%E8%85%B0%E6%B3%95%E5%BC%8F%E9%B1%BC%E5%B0%BE%E8%A3%99%E6%B4%8B%E6%B0%94%E6%80%A7%E6%84%9F%E6%96%B9%E9%A2%86%22%2C%22sales%22%3A192218%2C%22img%22%3A%7B%22uri%22%3A%22ecom-shop-material%2FxdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800%22%2C%22url_list%22%3A%5B%22https%3A%2F%2Fp3-item.ecombdimg.com%2Fimg%2Fecom-shop-material%2FxdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800~tplv-5mmsx3fupr-image.png%22%2C%22https%3A%2F%2Fp26-item.ecombdimg.com%2Fimg%2Fecom-shop-material%2FxdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800~tplv-5mmsx3fupr-image.png%22%5D%2C%22width%22%3A100%2C%22height%22%3A100%7D%2C%22min_price%22%3A8990%2C%22max_price%22%3A9990%7D&detail_schema=sslocal%3A%2F%2Fec_goods_detail%3Fpromotion_id%3D3633601778009913449%26product_id%3D3633601778009913449%26promotion_id%3D3633601778009913449%26enter_from%3Dcopy%26source_page%3Dcopy%26meta_params%3D%26request_additions%3D%257B%2522from_internal_feed%2522%253A%2522false%2522%252C%2522cps_track%2522%253A%2522%2522%252C%2522marketing_channel%2522%253A%2522%2522%252C%2522ecom_scene_id%2522%253A%25221003%2522%257D%26item_id%3D0%26kol_id%3D99514375927%26ec_s%3D127ad46ab612134598d7d54592b3520c760db84233c6_L0O%25252FoCviNDNAEgm%25252F%25252FNwNfw%25252Fp0esAj068DaNSb%25252Fe3OpOUCA2mO6FFUgJEG2x%25252FHtLD&h5_origin_type=detail_share&u_code=4f0cm8172714&did=MS4wLjACAAAANwkJuWIRFOzg5uCpDRpMj4OX-QryoDgn-yYlXQnRwQQ&with_sec_did=1",
                        "is_virtual_product":false,
                        "pay_type":1,
                        "track_extra":"{\"c_biz_combo\":\"8\",\"add_cart_source\":\"product_detail\",\"sellpoint_bp\":\"\",\"pdp_price_sku_id\":\"1775932365871223\",\"store_is_follow\":\"\",\"is_spot_goods\":\"1\",\"tag_code\":\"\",\"pickup_coupon_type\":\"0\",\"is_second_hand\":\"\",\"inflow_list_type\":\"\",\"store_author_level\":\"\",\"rank_id\":\"\",\"category_id\":\"20005\",\"store_product_count\":\"\",\"buyin_track\":\"\",\"show_sku_discount_price\":\"{\\"sku_id_list\\":\\"1775932365872215,1775932365873261,1775932365872247,1775932365872231,1775932365873277,1775932365871223,1775932365873245,1775932365872199,1775932365873229\\",\\"show_price\\":\\"6990\\"}\",\"rank_name\":\"本店商品热榜·第1名\"}",
                        "origin_type":"3002002002",
                        "shop_id":"39678696",
                        "entrance_info":"{\"rank_id_source\":\"\",\"has_rank_id\":\"\",\"show_rank\":\"show_rank\",\"full_return\":\"0\",\"is_exist_size_tab\":\"1\",\"discount_type\":\"{130:7281308668330754356}\",\"warm_up_status\":\"0\"}",
                        "replay_info":{
                            "replay_icon":{
                                "url_list":[
                                    "https://p3-item.ecombdimg.com/img/tos-cn-i-5mmsx3fupr/f69703185c8ce21769fd475b393d5426.png~tplv-5mmsx3fupr-image.webp",
                                    "https://p6-item.ecombdimg.com/img/tos-cn-i-5mmsx3fupr/f69703185c8ce21769fd475b393d5426.png~tplv-5mmsx3fupr-image.webp"
                                ],
                                "width":56,
                                "height":56,
                                "uri":"tos-cn-i-5mmsx3fupr/f69703185c8ce21769fd475b393d5426.png"
                            },
                            "hit_new_replay_style":true,
                            "replay_url":"sslocal://shopping/playback/?author_id=2643643454731652&enter_scene=product_detail&entrance_info=%7B%22goods_fragment_type%22%3A%22recommend%22%2C%22follow_status%22%3A%220%22%2C%22source_page%22%3A%22product_detail%22%2C%22model_type%22%3A%222%22%2C%22_psm_%22%3A%22ecom.product.pack%22%2C%22_method_%22%3A%22MGetFragmentByID%22%7D&fragment_id=7322170874344246052&model_type=2&promotion_id=3633601778009913449&room_id=7322128902334270220&sec_author_id=MS4wLjABAAAAZ0_q-Mk0MGwpHQdP1OKGe5Xi4GvEIlMV-9-FOPaXg2psix6Aa_IZI3XwwAbMdUsS&source_page=product_detail",
                            "replay_text":"讲解回放"
                        },
                        "product_video":{
                            "vid":"v02ecag10000cjhhe23c77uc1l948kqg",
                            "main_url":"https://v9-re1.douyinvod.com/e6b727669d89c7b6926bd7166eb2a55b/65b8a82b/video/tos/cn/tos-cn-v-800a60/ocIIgm4QGShuATkqqexIsuDCGnYebvDppgBc3C/?a=1128&ch=0&cr=7&dr=2&er=0&cd=0%7C0%7C0%7C1&cv=1&br=314&bt=314&cs=4&ds=6&ft=~iiRCzzKhWH6BS5U6DLo0PD1&mime_type=video_mp4&qs=11&rc=Mzs5ZzU2PDlpaGk3aDg3NUBpam43b2Y6ZjVrbTMzNGRoM0AtMGMvYzY1NWAxMDBfNjVeYSNuNTYucjQwYmVgLS1kYC9zcw%3D%3D&btag=10e00098000&dy_q=1706596859&feature_id=22eebe935d739141bc75f57beca62d29&l=20240130144059AB8E023B5A1D0303D0FE",
                            "backup_url":"https://v3.douyinvod.com/8f274781ecf5dab5fb8de4017939bda1/65b8a82b/video/tos/cn/tos-cn-v-800a60/ocIIgm4QGShuATkqqexIsuDCGnYebvDppgBc3C/?a=1128&ch=0&cr=7&dr=2&er=0&cd=0%7C0%7C0%7C1&cv=1&br=314&bt=314&cs=4&ds=6&ft=~iiRCzzKhWH6BS5U6DLo0PD1&mime_type=video_mp4&qs=11&rc=Mzs5ZzU2PDlpaGk3aDg3NUBpam43b2Y6ZjVrbTMzNGRoM0AtMGMvYzY1NWAxMDBfNjVeYSNuNTYucjQwYmVgLS1kYC9zcw%3D%3D&btag=10e00098000&cc=20&dy_q=1706596859&feature_id=22eebe935d739141bc75f57beca62d29&l=20240130144059AB8E023B5A1D0303D0FE",
                            "width":576,
                            "height":1024,
                            "duration":32934,
                            "url_expire":1706600491
                        },
                        "shopping_guide_schema":"sslocal://webcast_lynxview?type=popup&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_extensions_aweme%2Fextensions%2Fspecifications%2Ftemplate.js&gravity=bottom&height_percent=73&top_level=1&mask_alpha=0.56&add_safe_area_height=0&use_real_screen_height=1&feature_page_source=canshu&promotion_id=3633601778009913449&product_id=3633601778009913449",
                        "visitor_count":488152,
                        "addition_modules_data":[
    
                        ],
                        "cart_num":1,
                        "category_info":{
                            "first_cid":20005,
                            "second_cid":20224,
                            "third_cid":0,
                            "fourth_cid":0
                        },
                        "time_sku":{
                            "time_sku_num":0,
                            "only_time_sku":false
                        },
                        "alliance_key":"1128_99514375927_0_3633601778009913449_010",
                        "already_buy":false,
                        "need_check":true,
                        "favorited":false,
                        "log_extra":"{\"avl_discount\":\"1\",\"discount_type\":\"{130:7281308668330754356}\",\"discount_activity_type\":\"130\",\"discount_activity_id\":\"7281308668330754356\",\"discount_label_info\":\"700:7281308668330754356\"}",
                        "image_extend":[
                            {
                                "type":"size",
                                "label":"尺码",
                                "images":[
                                    {
                                        "uri":"ecom-shop-material/xdYyLHNE_m_84a20c97ffcdfea5f2a628adc650de5c_sx_77752_www1125-577",
                                        "url_list":[
                                            "https://p3-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_84a20c97ffcdfea5f2a628adc650de5c_sx_77752_www1125-577~tplv-5mmsx3fupr-image.webp",
                                            "https://p26-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_84a20c97ffcdfea5f2a628adc650de5c_sx_77752_www1125-577~tplv-5mmsx3fupr-image.webp"
                                        ],
                                        "width":1125,
                                        "height":576
                                    }
                                ]
                            }
                        ],
                        "share_template":"3.07 01/01 qEH:/ g@o.DH 【抖音商城】%s 【思蜜妲】2023新款连衣裙气质百搭收腰法式鱼尾裙洋气性感方领\n长按复制此条消息,打开抖音搜索,查看商品详情!",
                        "origin_id":"99514375927_3633601778009913449"
                    },
                    "address_info":{
                        "mobile":"",
                        "receiver":"",
                        "province":{
                            "id":"51",
                            "name":"四川省"
                        },
                        "city":{
                            "id":"0",
                            "name":""
                        },
                        "area":{
                            "id":"0",
                            "name":""
                        },
                        "tag":"",
                        "id":"0",
                        "detail":""
                    },
                    "hotsoon":{
                        "shop_entry":[
    
                        ]
                    },
                    "base_info":{
                        "sales":192218,
                        "biz_kind":0,
                        "sold_status":0,
                        "tag_info_str":"Goodstuff_tupu##19;TagCode_34b94_287c#15#3;beauty_repeat_customer##19;can_gen_imgtxt##3;can_show_intelligent_pic##2;cat_operation#enum:4407$#3;diagnose_similar_product#2#2;douingoodv2#A#2;fake_compensate_four##3;fenggeshop2#36#3;fenggeshop3#81#3;have_auto_publish_img_txt##3;is_alli_product##2;leimuxsd#enum:8$|2$|17$|14$|13$|11$|10$|1$#3;long_picture_style##2;mix_gmv_absolute_top_goods##19;mix_gmv_high_show_high_convert##19;mix_gmv_key_goods##19;mix_gmv_quality_goods##19;mix_order_absolute_top_goods##19;mix_order_high_show_high_convert##19;mix_order_key_goods##19;mix_order_quality_goods##19;mix_whole_boutique_pool##19;mix_wmall_boutique_pool##19;play_back##19;price_power_comprehensive_tag#3#2;price_power_level#4#2;product_card_new_code##2;shangxiangjsls#enum:1$#3;subsidy_product_level#B#2;support_15days_quality_aftersales##3;support_7days_refund##3;tag_code_xsg_ecom##2;user_pants##3;zero_entry#enum:2$#3;customer_protection##3;platform_announcement##3;shop_qualification##3",
                        "promotion_source_text":"商品来自小店",
                        "product_id":"3633601778009913449",
                        "status":2,
                        "sold_out":false,
                        "promotion_source":6,
                        "presell_type":0,
                        "product_type":0,
                        "sale_type":0,
                        "promotion_id":"3633601778009913449",
                        "is_hide_sales":false,
                        "store_id":0,
                        "spec_info":{
                            "spec_list":[
                                {
                                    "img_list":[
                                        {
                                            "uri":"ecom-shop-material/xdYyLHNE_m_774721f0f0687a78ec3abee82c4598bf_sx_746311_www3024-3024",
                                            "url_list":[
                                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_774721f0f0687a78ec3abee82c4598bf_sx_746311_www3024-3024~tplv-5mmsx3fupr-resize:88:88.webp",
                                                "https://p6-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_774721f0f0687a78ec3abee82c4598bf_sx_746311_www3024-3024~tplv-5mmsx3fupr-resize:88:88.webp"
                                            ],
                                            "width":88,
                                            "height":88
                                        },
                                        {
                                            "uri":"ecom-shop-material/xdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800",
                                            "url_list":[
                                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800~tplv-5mmsx3fupr-resize:88:88.webp",
                                                "https://p6-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800~tplv-5mmsx3fupr-resize:88:88.webp"
                                            ],
                                            "width":88,
                                            "height":88
                                        },
                                        {
                                            "uri":"ecom-shop-material/xdYyLHNE_m_460843bb7f7bf1d105137da089a3a8e1_sx_896806_www3024-3024",
                                            "url_list":[
                                                "https://p6-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_460843bb7f7bf1d105137da089a3a8e1_sx_896806_www3024-3024~tplv-5mmsx3fupr-resize:88:88.webp",
                                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_460843bb7f7bf1d105137da089a3a8e1_sx_896806_www3024-3024~tplv-5mmsx3fupr-resize:88:88.webp"
                                            ],
                                            "width":88,
                                            "height":88
                                        },
                                        {
                                            "uri":"ecom-shop-material/xdYyLHNE_m_774721f0f0687a78ec3abee82c4598bf_sx_746311_www3024-3024",
                                            "url_list":[
                                                "https://p6-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_774721f0f0687a78ec3abee82c4598bf_sx_746311_www3024-3024~tplv-5mmsx3fupr-resize:88:88.webp",
                                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_774721f0f0687a78ec3abee82c4598bf_sx_746311_www3024-3024~tplv-5mmsx3fupr-resize:88:88.webp"
                                            ],
                                            "width":88,
                                            "height":88
                                        },
                                        {
                                            "uri":"ecom-shop-material/xdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800",
                                            "url_list":[
                                                "https://p6-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800~tplv-5mmsx3fupr-resize:88:88.webp",
                                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800~tplv-5mmsx3fupr-resize:88:88.webp"
                                            ],
                                            "width":88,
                                            "height":88
                                        },
                                        {
                                            "uri":"ecom-shop-material/xdYyLHNE_m_460843bb7f7bf1d105137da089a3a8e1_sx_896806_www3024-3024",
                                            "url_list":[
                                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_460843bb7f7bf1d105137da089a3a8e1_sx_896806_www3024-3024~tplv-5mmsx3fupr-resize:88:88.webp",
                                                "https://p6-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_460843bb7f7bf1d105137da089a3a8e1_sx_896806_www3024-3024~tplv-5mmsx3fupr-resize:88:88.webp"
                                            ],
                                            "width":88,
                                            "height":88
                                        }
                                    ]
                                }
                            ]
                        },
                        "links":{
                            "h5_url":"sslocal://webcast_lynxview?type=fullscreen&enable_font_scale=1&hide_nav_bar=1&status_bar_color=black&status_bar_bg_color=white&web_bg_color=%23ffffff&top_level=1&add_safe_area_height=0&enable_pad_adapter=1&screen_size_adaptation=1&android_soft_input_mode=48&trans_status_bar=1&disable_bounce=1&hide_back_button=1&hide_bar=1&bounce_disable=1&disable_bounces=1&hide_back_close=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_buynow_aweme%2Fapp%2Ftemplate.js&new_source_type=product_detail&shape=0&origin_id=99514375927_3633601778009913449&alkey=1128_99514375927_0_3633601778009913449_010&ec_order_prefetch=1&c_biz_combo=8&id=3633601778009913449&shop_id=xdYyLHNE&origin_type=3002002002&group_id=0&mega_object=%7B%22entrance_info%22%3A%22%22%7D&schema_log_id=20240130144059AB8E023B5A1D0303D0FE&source_page=product_detail_page&eztf_sdk_extra=%7B%22schema_log_id%22%3A%2220240130144059AB8E023B5A1D0303D0FE%22%2C%22is_side_car%22%3A%221%22%2C%22source_page%22%3A%22product_detail_page%22%2C%22sdk_version%22%3A%22v0_2_22%22%2C%22caller_psm%22%3A%22ecom.product.pack%22%7D&api_migration_gray=1",
                            "small_app_url":"sslocal://microapp?version=v2&app_id=tt7cca0a77e3e0cd15&scene=027002&version_type=current&start_page=pages%2Fproduct-pay%2Fproduct-pay%3Falkey%3D1128_99514375927_0_3633601778009913449_010%26c_biz_combo%3D8%26disable_activity%3D0%26new_source_type%3Dproduct_detail%26origin_id%3D99514375927_3633601778009913449%26origin_type%3D3002002002%26product_id%3D3633601778009913449&bdp_log=%7B%22launch_from%22%3A%22others_homepage%22%2C%22location%22%3A%22store_entrance%22%7D&bdpsum=974deec",
                            "group_h5_url":"sslocal://webcast_lynxview?type=fullscreen&enable_font_scale=1&hide_nav_bar=1&status_bar_color=black&status_bar_bg_color=white&web_bg_color=%23ffffff&top_level=1&add_safe_area_height=0&enable_pad_adapter=1&screen_size_adaptation=1&android_soft_input_mode=48&trans_status_bar=1&disable_bounce=1&hide_back_button=1&hide_bar=1&bounce_disable=1&disable_bounces=1&hide_back_close=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_buynow_aweme%2Fapp%2Ftemplate.js&new_source_type=product_detail&shape=0&origin_id=99514375927_3633601778009913449&alkey=1128_99514375927_0_3633601778009913449_010&ec_order_prefetch=1&c_biz_combo=8&id=3633601778009913449&shop_id=xdYyLHNE&origin_type=3002002002&group_id=0&mega_object=%7B%22entrance_info%22%3A%22%22%7D&schema_log_id=20240130144059AB8E023B5A1D0303D0FE&source_page=product_detail_page&eztf_sdk_extra=%7B%22schema_log_id%22%3A%2220240130144059AB8E023B5A1D0303D0FE%22%2C%22is_side_car%22%3A%221%22%2C%22source_page%22%3A%22product_detail_page%22%2C%22sdk_version%22%3A%22v0_2_22%22%2C%22caller_psm%22%3A%22ecom.product.pack%22%7D&api_migration_gray=1"
                        },
                        "is_hide_product":false,
                        "title":"【思蜜妲】2023新款连衣裙气质百搭收腰法式鱼尾裙洋气性感方领",
                        "images":[
                            {
                                "height":1080,
                                "uri":"ecom-shop-material/xdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800",
                                "url_list":[
                                    "https://p6-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_22c3371af649a1648567d1f0f2b6c407_sx_386815_www800-800~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                ],
                                "width":1080
                            },
                            {
                                "url_list":[
                                    "https://p6-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_481899675dddd007d9fc70b56745a293_sx_757739_www3024-3024~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_481899675dddd007d9fc70b56745a293_sx_757739_www3024-3024~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                ],
                                "width":1080,
                                "height":1080,
                                "uri":"ecom-shop-material/xdYyLHNE_m_481899675dddd007d9fc70b56745a293_sx_757739_www3024-3024"
                            },
                            {
                                "uri":"ecom-shop-material/xdYyLHNE_m_774721f0f0687a78ec3abee82c4598bf_sx_746311_www3024-3024",
                                "url_list":[
                                    "https://p6-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_774721f0f0687a78ec3abee82c4598bf_sx_746311_www3024-3024~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_774721f0f0687a78ec3abee82c4598bf_sx_746311_www3024-3024~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                ],
                                "width":1080,
                                "height":1080
                            },
                            {
                                "uri":"ecom-shop-material/xdYyLHNE_m_a818d26cbb060a5f6e2d2aee619c0d99_sx_998268_www3024-3024",
                                "url_list":[
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_a818d26cbb060a5f6e2d2aee619c0d99_sx_998268_www3024-3024~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                    "https://p26-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_a818d26cbb060a5f6e2d2aee619c0d99_sx_998268_www3024-3024~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                ],
                                "width":1080,
                                "height":1080
                            },
                            {
                                "uri":"ecom-shop-material/xdYyLHNE_m_b8674a94a9ebcb1be7932fc0a87be7ea_sx_1189803_www3024-3024",
                                "url_list":[
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_b8674a94a9ebcb1be7932fc0a87be7ea_sx_1189803_www3024-3024~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                    "https://p26-item.ecombdimg.com/img/ecom-shop-material/xdYyLHNE_m_b8674a94a9ebcb1be7932fc0a87be7ea_sx_1189803_www3024-3024~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                ],
                                "width":1080,
                                "height":1080
                            }
                        ]
                    },
                    "page_coms_config":{
                        "display_gyl":true,
                        "shopping_cart":true,
                        "set_cart_gray":false,
                        "share_icon":true,
                        "display_discount":true,
                        "store_icon":true,
                        "display_want":true
                    }
                }
            ],
            "page_style":{
                "confirm_order_short_url":null,
                "detail_page_tag_show":false,
                "detail_page_stats_show":true,
                "detail_page_tag_max":3,
                "comment_page_tag_max":0,
                "confirm_order_style":1
            },
            "chunk_index":0,
            "status_code":0,
            "mini":true,
            "chunk_count":1,
            "extra":{
                "fatal_item_ids":[
    
                ],
                "logid":"20240130144059AB8E023B5A1D0303D0FE",
                "now":1706596859000
            },
            "log_pb":{
                "impr_id":"20240130144059AB8E023B5A1D0303D0FE"
            },
            "fallback_page":{
                "show":false,
                "icon":null,
                "text":"",
                "status":0
            },
            "app_ver":"1.0.0-3.0",
            "_ddf":"leo",
            "app_ver_check":"ok",
            "format_check":"ok"
        },
        "error":"",
        "secache":"58336fa1f3aaaf2d48544f60fdd723cb",
        "secache_time":1706596859,
        "secache_date":"2024-01-30 14:40:59",
        "reason":"",
        "error_code":"0000",
        "cache":0,
        "api_info":"today: max:15000 all[=++];expires:2031-01-01",
        "execution_time":"0.425",
        "server_time":"Beijing/2024-01-30 14:40:59",
        "client_ip":"127.0.0.1",
        "call_args":{
            "num_iid":"3633601778009913449"
        },
        "api_type":"douyin",
        "server_memory":"3.32MB",
        "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/2023-11-30 15:44:00",
    		"call_args": [],
    		"api_type": "douyin",
    		"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(微信同号)