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

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

douyin.item_get_app(Ver:1.0.0-6.2)

  • 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": {
            "detail": {
                "detail_info": {
                    "detail_config": [
                        {
                            "main_content": [
                                {
                                    "content": [
                                        "售卖价,由商家依照《价格法》规定的定价原则及定价依据通过商家后台页面自主填写(适用政府指导价或者政府定价除外),如商品未通过商家后台参加促销活动(如优惠券、满减、秒杀、拼团等)的,售卖价将作为销售价格展示。",
                                        "如商品通过商家后台参加促销活动(如优惠券、满减、秒杀、拼团等),售卖价将会作为被比较价格,可能以“划线价(即价格上划横线)”、“参考价”等形式展示,此时售卖价作为被比较的价格,并非原价,仅用于向消费者展示商品未参与促销活动的价格。",
                                        "到手价,指商品使用各种优惠券、参与满减等促销活动后,消费者实际支付的价格。到手价可能因促销活动、达人主播专享、补贴、特殊时段等各类因素而产生变动,最终以消费者在商品订单中的支付金额为准。",
                                        "商品价格由商家自主决定,如商家及/或达人对商品价格有特别说明的,以商家/达人表述为准。平台依据法律法规及平台规则,坚决打击各类价格违法行为,如消费者发现价格违法情形的,请及时向平台投诉举报。",
                                        "抖音电商平台价格标签说明"
                                    ],
                                    "default_show": false,
                                    "links": [
                                        {
                                            "key": "抖音电商平台价格标签说明",
                                            "link": "https://school.jinritemai.com/doudian/web/article/aHzox7KpPT94"
                                        }
                                    ],
                                    "title": "价格说明",
                                    "type": 0
                                }
                            ],
                            "main_title": "",
                            "main_type": 0
                        },
                        {
                            "main_content": [
                                {
                                    "content": [
                                        "“已售”,指该店铺在抖音电商平台内,销售该款商品的数量。",
                                        "“同款热销”,系同型号同规格的同款商品,在抖音电商平台内多店铺历史销量汇总统计所得,供消费者参考。该销量数据基于平台内各店铺数据和算法计算所得,可能存在识别不准确的情形,我们将持续优化。",
                                        "“全网热销”,系同型号同规格的同款商品,在抖音电商平台内多店铺历史销量汇总统计所得,供消费者参考。该销量数据基于平台内各店铺数据和算法计算所得,可能存在识别不准确的情形,我们将持续优化。"
                                    ],
                                    "default_show": false,
                                    "links": [
    
                                    ],
                                    "title": "销量说明",
                                    "type": 0
                                },
                                {
                                    "content": [
                                        "小店平台用户服务协议",
                                        "小店隐私政策"
                                    ],
                                    "default_show": false,
                                    "links": [
                                        {
                                            "key": "小店平台用户服务协议",
                                            "link": "https://school.jinritemai.com/doudian/web/article/104868?rank=1&fromPage=search_result&searchInfo=10700604816031273580%3A1%3A0&query=%E5%B0%8F%E5%BA%97%E7%94%A8%E6%88%B7%E5%8D%8F%E8%AE%AE"
                                        },
                                        {
                                            "key": "小店隐私政策",
                                            "link": "https://school.jinritemai.com/doudian/web/article/aHJfD81heWcT"
                                        }
                                    ],
                                    "title": "协议",
                                    "type": 0
                                }
                            ],
                            "main_title": "",
                            "main_type": 0
                        }
                    ],
                    "detail_imgs": [
                        {
                            "height": 513,
                            "uri": "ecom-shop-material/cOCwhiKF_m_a0ea961dc6477218bc8ca775d36d8245_sx_63847_www790-513",
                            "url_list": [
                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_a0ea961dc6477218bc8ca775d36d8245_sx_63847_www790-513~tplv-5mmsx3fupr-resize:790:513.jpeg",
                                "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_a0ea961dc6477218bc8ca775d36d8245_sx_63847_www790-513~tplv-5mmsx3fupr-resize:790:513.jpeg"
                            ],
                            "width": 790
                        },
                        {
                            "height": 824,
                            "uri": "ecom-shop-material/cOCwhiKF_m_1f0e7535d78f45db1b7901fcb010ece7_sx_106312_www790-824",
                            "url_list": [
                                "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_1f0e7535d78f45db1b7901fcb010ece7_sx_106312_www790-824~tplv-5mmsx3fupr-resize:790:824.jpeg",
                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_1f0e7535d78f45db1b7901fcb010ece7_sx_106312_www790-824~tplv-5mmsx3fupr-resize:790:824.jpeg"
                            ],
                            "width": 790
                        },
                        {
                            "height": 32,
                            "uri": "ecom-shop-material/cOCwhiKF_m_4fe340c4c6b5606c45e1c6703fa18ba9_sx_21762_www790-32",
                            "url_list": [
                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_4fe340c4c6b5606c45e1c6703fa18ba9_sx_21762_www790-32~tplv-5mmsx3fupr-resize:790:32.jpeg",
                                "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_4fe340c4c6b5606c45e1c6703fa18ba9_sx_21762_www790-32~tplv-5mmsx3fupr-resize:790:32.jpeg"
                            ],
                            "width": 790
                        },
                        {
                            "height": 1196,
                            "uri": "ecom-shop-material/cOCwhiKF_m_254bb305bde770749047d681d1741a8d_sx_768032_www790-1196",
                            "url_list": [
                                "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_254bb305bde770749047d681d1741a8d_sx_768032_www790-1196~tplv-5mmsx3fupr-resize:790:1196.jpeg",
                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_254bb305bde770749047d681d1741a8d_sx_768032_www790-1196~tplv-5mmsx3fupr-resize:790:1196.jpeg"
                            ],
                            "width": 790
                        },
                        {
                            "height": 575,
                            "uri": "ecom-shop-material/cOCwhiKF_m_44b7d97a446a41e28bcca65298f887c6_sx_45538_www790-575",
                            "url_list": [
                                "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_44b7d97a446a41e28bcca65298f887c6_sx_45538_www790-575~tplv-5mmsx3fupr-resize:790:575.jpeg",
                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_44b7d97a446a41e28bcca65298f887c6_sx_45538_www790-575~tplv-5mmsx3fupr-resize:790:575.jpeg"
                            ],
                            "width": 790
                        },
                        {
                            "height": 160,
                            "uri": "ecom-shop-material/cOCwhiKF_m_e9b21cd490a74c55dd18d5951e623add_sx_7099_www790-160",
                            "url_list": [
                                "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_e9b21cd490a74c55dd18d5951e623add_sx_7099_www790-160~tplv-5mmsx3fupr-resize:790:160.jpeg",
                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_e9b21cd490a74c55dd18d5951e623add_sx_7099_www790-160~tplv-5mmsx3fupr-resize:790:160.jpeg"
                            ],
                            "width": 790
                        }
                    ],
                    "detail_imgs_new": [
                        {
                            "image": {
                                "height": 513,
                                "uri": "ecom-shop-material/cOCwhiKF_m_a0ea961dc6477218bc8ca775d36d8245_sx_63847_www790-513",
                                "url_list": [
                                    "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_a0ea961dc6477218bc8ca775d36d8245_sx_63847_www790-513~tplv-5mmsx3fupr-resize:790:513.jpeg",
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_a0ea961dc6477218bc8ca775d36d8245_sx_63847_www790-513~tplv-5mmsx3fupr-resize:790:513.jpeg"
                                ],
                                "width": 790
                            },
                            "pic_type": "pic"
                        },
                        {
                            "image": {
                                "height": 824,
                                "uri": "ecom-shop-material/cOCwhiKF_m_1f0e7535d78f45db1b7901fcb010ece7_sx_106312_www790-824",
                                "url_list": [
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_1f0e7535d78f45db1b7901fcb010ece7_sx_106312_www790-824~tplv-5mmsx3fupr-resize:790:824.jpeg",
                                    "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_1f0e7535d78f45db1b7901fcb010ece7_sx_106312_www790-824~tplv-5mmsx3fupr-resize:790:824.jpeg"
                                ],
                                "width": 790
                            },
                            "pic_type": "pic"
                        },
                        {
                            "image": {
                                "height": 32,
                                "uri": "ecom-shop-material/cOCwhiKF_m_4fe340c4c6b5606c45e1c6703fa18ba9_sx_21762_www790-32",
                                "url_list": [
                                    "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_4fe340c4c6b5606c45e1c6703fa18ba9_sx_21762_www790-32~tplv-5mmsx3fupr-resize:790:32.jpeg",
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_4fe340c4c6b5606c45e1c6703fa18ba9_sx_21762_www790-32~tplv-5mmsx3fupr-resize:790:32.jpeg"
                                ],
                                "width": 790
                            },
                            "pic_type": "pic"
                        },
                        {
                            "image": {
                                "height": 1196,
                                "uri": "ecom-shop-material/cOCwhiKF_m_254bb305bde770749047d681d1741a8d_sx_768032_www790-1196",
                                "url_list": [
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_254bb305bde770749047d681d1741a8d_sx_768032_www790-1196~tplv-5mmsx3fupr-resize:790:1196.jpeg",
                                    "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_254bb305bde770749047d681d1741a8d_sx_768032_www790-1196~tplv-5mmsx3fupr-resize:790:1196.jpeg"
                                ],
                                "width": 790
                            },
                            "pic_type": "pic"
                        },
                        {
                            "image": {
                                "height": 575,
                                "uri": "ecom-shop-material/cOCwhiKF_m_44b7d97a446a41e28bcca65298f887c6_sx_45538_www790-575",
                                "url_list": [
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_44b7d97a446a41e28bcca65298f887c6_sx_45538_www790-575~tplv-5mmsx3fupr-resize:790:575.jpeg",
                                    "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_44b7d97a446a41e28bcca65298f887c6_sx_45538_www790-575~tplv-5mmsx3fupr-resize:790:575.jpeg"
                                ],
                                "width": 790
                            },
                            "pic_type": "pic"
                        },
                        {
                            "image": {
                                "height": 160,
                                "uri": "ecom-shop-material/cOCwhiKF_m_e9b21cd490a74c55dd18d5951e623add_sx_7099_www790-160",
                                "url_list": [
                                    "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_e9b21cd490a74c55dd18d5951e623add_sx_7099_www790-160~tplv-5mmsx3fupr-resize:790:160.jpeg",
                                    "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_e9b21cd490a74c55dd18d5951e623add_sx_7099_www790-160~tplv-5mmsx3fupr-resize:790:160.jpeg"
                                ],
                                "width": 790
                            },
                            "pic_type": "pic"
                        }
                    ],
                    "jump_url": "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=changmiao",
                    "product_format": [
                        {
                            "format": [
                                {
                                    "message": [
                                        {
                                            "desc": "GXG"
                                        }
                                    ],
                                    "name": "品牌",
                                    "pic_urls": null,
                                    "property_id": "1687"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "常规款"
                                        }
                                    ],
                                    "name": "厚度",
                                    "pic_urls": null,
                                    "property_id": "241"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "棉72%"
                                        },
                                        {
                                            "desc": "聚酯纤维25%"
                                        },
                                        {
                                            "desc": "氨纶3%"
                                        }
                                    ],
                                    "name": "面料材质",
                                    "pic_urls": null,
                                    "property_id": "785"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "时尚都市"
                                        }
                                    ],
                                    "name": "基础风格",
                                    "pic_urls": null,
                                    "property_id": "1209"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "男"
                                        }
                                    ],
                                    "name": "适用性别",
                                    "pic_urls": null,
                                    "property_id": "1577"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "休闲"
                                        }
                                    ],
                                    "name": "适用场景",
                                    "pic_urls": null,
                                    "property_id": "1714"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "标准"
                                        }
                                    ],
                                    "name": "服装版型",
                                    "pic_urls": null,
                                    "property_id": "3059"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "短袖"
                                        }
                                    ],
                                    "name": "袖长",
                                    "pic_urls": null,
                                    "property_id": "714"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "夏季"
                                        }
                                    ],
                                    "name": "适用季节",
                                    "pic_urls": null,
                                    "property_id": "1343"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "基础大众"
                                        }
                                    ],
                                    "name": "风格",
                                    "pic_urls": null,
                                    "property_id": "2592"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "青年"
                                        }
                                    ],
                                    "name": "适用对象",
                                    "pic_urls": null,
                                    "property_id": "2199"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "G24X242028"
                                        }
                                    ],
                                    "name": "货号",
                                    "pic_urls": null,
                                    "property_id": "3171"
                                },
                                {
                                    "message": [
                                        {
                                            "desc": "常规"
                                        }
                                    ],
                                    "name": "袖型",
                                    "pic_urls": null,
                                    "property_id": "3035"
                                }
                            ]
                        }
                    ],
                    "tag_card": null,
                    "title_image": {
                        "height": 21,
                        "uri": "tos-cn-i-5mmsx3fupr/product_detail_head.png",
                        "url_list": [
                            "http://p26-item.ecombdimg.com/tos-cn-i-5mmsx3fupr/product_detail_head.png~tplv-5mmsx3fupr-origin-png.png"
                        ],
                        "width": 149
                    }
                },
                "extra": {
                    "fatal_item_ids": [
    
                    ],
                    "logid": "20240906095801CB1A8C8DD62E445D37E1",
                    "now": 1725587881000
                },
                "log_pb": {
                    "impr_id": "20240906095801CB1A8C8DD62E445D37E1"
                },
                "status_code": 0
            },
            "item": {
                "extra": {
                    "fatal_item_ids": [
    
                    ],
                    "logid": "202409060958003866B0FE3D997666AD0E",
                    "now": 1725587881000
                },
                "fallback_page": [
    
                ],
                "log_pb": {
                    "impr_id": "202409060958003866B0FE3D997666AD0E"
                },
                "promotion_h5": {
                    "basic_info_data": {
                        "bottom_label_list": [
                            {
                                "coms": [
                                    {
                                        "border_radius": "",
                                        "height": 13,
                                        "margin": "0 4px 0 0",
                                        "type": "icon",
                                        "url": "http://p26-item.ecombdimg.com/tos-cn-i-5mmsx3fupr/bangdan2.png~tplv-5mmsx3fupr-origin-png.png"
                                    },
                                    {
                                        "bold": 600,
                                        "border_radius": "",
                                        "color": "#161823",
                                        "fontSize": 13,
                                        "text": "· 入选 绣花polo衫好评榜·第28名",
                                        "type": "text"
                                    }
                                ],
                                "label_type": 70,
                                "link_info": {
                                    "link": "sslocal://webcast_lynxview?url=https%3A%2F%2Flf6-sourcecdn-tos.pstatp.com%2Fobj%2Fbyte-gurd-source%2Fecom%2Flynx%2Fcommon%2Ffe_lynx_commerce_product_rank%2Fapp%2Ftemplate.js%3Floader_name%3Dforest&type=fullscreen&use_taro=0&load_taro=0&hide_nav_bar=1&status_bar_bg_color=ffffff&hide_status_bar=0&trans_status_bar=1&web_bg_color=ffffff&open_with_host=1&enable_latch=1&rank_id=7290221507391979837&ranking_num=28&product_id=3675495476536410157&pre_board_type=20&biz_scene=product_detail&enter_from=product_detail&carrier_source=&ecom_group_type=&source_method=&anchor_id=&room_id=&ecom_scene_id="
                                },
                                "render_type": 0
                            },
                            {
                                "label_type": 0,
                                "render_type": 0
                            }
                        ],
                        "price_info": {
                            "price": {
                                "min_price": "1??"
                            }
                        },
                        "product_id": "3675495476536410157",
                        "title_info": {
                            "title": "GXG男装 商场同款 字母绣花polo衫男士 24年夏季新品#G24X242028"
                        }
                    },
                    "collapse_detail": false,
                    "comment_data": {
                        "buyer_show": {
                            "title_bar": {
                                "link": "aweme://ecom_buyer_show?title=%E4%B9%B0%E5%AE%B6%E7%A7%80&product_id=3675495476536410157&track_params=%7B%22comment_entrance%22%3A%22product_detail%22%2C%22comment_module%22%3A%22selected_comment%22%7D"
                            }
                        },
                        "good_comment": {
                            "title_bar": {
                                "link": "sslocal://ec_goods_comment/?comment_entrance=product_flow_page&product_id=3675495476536410157&show_header=1",
                                "sum": 3
                            }
                        },
                        "good_evaluation": [
    
                        ],
                        "shop_extra_comment": {
                            "tag_list": [
                                {
                                    "num": 13637,
                                    "sentiment": 1,
                                    "text": "回头客"
                                },
                                {
                                    "num": 295,
                                    "sentiment": 1,
                                    "text": "尺码合适"
                                },
                                {
                                    "num": 458,
                                    "sentiment": 1,
                                    "text": "性价比高"
                                },
                                {
                                    "num": 415,
                                    "sentiment": 1,
                                    "text": "物流发货迅速"
                                },
                                {
                                    "num": 308,
                                    "sentiment": 1,
                                    "text": "购物体验棒"
                                },
                                {
                                    "num": 205,
                                    "sentiment": 1,
                                    "text": "商家服务好"
                                },
                                {
                                    "num": 127,
                                    "sentiment": 1,
                                    "text": "包装好"
                                }
                            ],
                            "title_bar": {
                                "link": "sslocal://ec_goods_comment/?comment_entrance=product_flow_page&product_id=3675495476536410157&shop_id=13560253&show_header=1&is_store_comment=1",
                                "sum": 29721
                            }
                        },
                        "style_type": 0
                    },
                    "footer_data": {
                        "big_button_list": [
                            {
                                "bg_color": "#FE2C550D",
                                "button_status": "normal",
                                "button_type": -3,
                                "sub_text_info": [
    
                                ],
                                "text_info": {
                                    "color": "#FE2C55",
                                    "content": "加入购物车"
                                }
                            },
                            {
                                "bg_color": "#FE2C55",
                                "button_status": "normal",
                                "button_type": 0,
                                "sub_text_info": [
    
                                ],
                                "text_info": {
                                    "color": "#FFFFFF",
                                    "content": "立即购买"
                                }
                            }
                        ],
                        "small_button_list": [
                            {
                                "icon_url": "https://lf3-static.bytednsdoc.com/obj/eden-cn/ljylttvjl_lmp/ljhwZthlaukjlkulzlp/ecom_detail/detail_page__shop_icon--gray.png",
                                "name": "店铺"
                            },
                            {
                                "icon_url": "https://lf3-static.bytednsdoc.com/obj/eden-cn/jpw_uvlnpw/ljhwZthlaukjlkulzlp/pigeon_icon/new/good_detail.png",
                                "name": "客服"
                            },
                            {
                                "icon_url": "https://p26-piu.byteimg.com/tos-cn-i-8jisjyls3a/5839312b6e2348109c5328267a75dc5a~tplv-8jisjyls3a-3:0:0:q75.png",
                                "name": "购物车",
                                "subscript": "0"
                            }
                        ]
                    },
                    "head_figure_data": {
                        "container_size": 0,
                        "live_info": {
                            "icon": "https://p3-piu.byteimg.com/tos-cn-i-8jisjyls3a/30c8e6e7757340babb23305267117929~tplv-8jisjyls3a-2:0:0:q75.image",
                            "status": "live",
                            "text": "直播中",
                            "url": "sslocal://webcast_room/?ecom_live_params=%7B%22params_version%22%3A1%2C%22related_info%22%3A%22%7B%5C%22detail_product_id%5C%22%3A%5C%223675495476536410157%5C%22%2C%5C%22related_config%5C%22%3A%5B%7B%5C%22id%5C%22%3A%5C%22detail_product_id%5C%22%2C%5C%22client_config%5C%22%3A%7B%5C%22type%5C%22%3A%5B%5C%22promotion_list_top%5C%22%5D%2C%5C%22list_show_count%5C%22%3A2147483647%7D%2C%5C%22server_config%5C%22%3A%7B%5C%22list_show_duration%5C%22%3A-1%2C%5C%22list_show_index%5C%22%3Atrue%7D%7D%5D%7D%22%2C%22jump_schema%22%3A%22sslocal%3A%2F%2Fec_live_list%2F%3Fpassthrough_params%3D%257B%2522live_list_channel%2522%253A%2522product_detail_shown%2522%257D%22%7D&room_id=7411309210253740841&user_id=99514375927"
                        },
                        "media_list": [
                            {
                                "content_list": [
                                    {
                                        "combination_info": {
                                            "combination_jump": [
    
                                            ]
                                        },
                                        "height": 0,
                                        "url": "https://p26-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_fc6c6418f68aa87c6b395e6b086ddbe1_sx_50076_www800-800~tplv-5mmsx3fupr-resize_q:1080:1080:q90.png",
                                        "width": 0
                                    },
                                    {
                                        "combination_info": {
                                            "combination_jump": [
    
                                            ]
                                        },
                                        "height": 0,
                                        "url": "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_67baaf412b68f4d3d6b1ca3f9a80a4e3_sx_60947_www800-800~tplv-5mmsx3fupr-resize_q:1080:1080:q90.png",
                                        "width": 0
                                    },
                                    {
                                        "combination_info": {
                                            "combination_jump": [
    
                                            ]
                                        },
                                        "height": 0,
                                        "url": "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_a00064b5e2e16c4b5ecc8c02bd58af1d_sx_177337_www800-800~tplv-5mmsx3fupr-resize_q:1080:1080:q90.png",
                                        "width": 0
                                    },
                                    {
                                        "combination_info": {
                                            "combination_jump": [
    
                                            ]
                                        },
                                        "height": 0,
                                        "url": "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_5e86ebe80c62049230c0d00e3a97c687_sx_674707_www800-800~tplv-5mmsx3fupr-resize_q:1080:1080:q90.png",
                                        "width": 0
                                    },
                                    {
                                        "combination_info": {
                                            "combination_jump": [
    
                                            ]
                                        },
                                        "height": 0,
                                        "url": "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_4ec325d9cce797160a2e2379dc27b41c_sx_918950_www800-800~tplv-5mmsx3fupr-resize_q:1080:1080:q90.png",
                                        "width": 0
                                    }
                                ],
                                "name": "商品",
                                "type": "image"
                            },
                            {
                                "content_list": [
                                    {
                                        "combination_info": {
                                            "combination_jump": [
    
                                            ]
                                        },
                                        "height": 0,
                                        "url": "https://p3-item.ecombdimg.com/img/ecom-shop-material/cOCwhiKF_m_13cee1e029de39952aaa822b605bed72_sx_39110_www660-417~tplv-5mmsx3fupr-image.png",
                                        "width": 0
                                    }
                                ],
                                "name": "尺码",
                                "type": "image"
                            }
                        ],
                        "style_type": 0
                    },
                    "init_popup_data": {
                        "find_sim": [
    
                        ]
                    },
                    "pack_detail": {
                        "style_type": 0
                    },
                    "page_data": [
    
                    ],
                    "product_support_info_data": {
                        "header_content": {
                            "background": "#FFFFFF",
                            "content_color": "#161823",
                            "service_tag": [
    
                            ]
                        },
                        "logistics_content": {
                            "content_list": [
                                {
                                    "coms": [
                                        {
                                            "border_radius": "",
                                            "type": "icon",
                                            "url": "https://lf3-static.bytednsdoc.com/obj/eden-cn/rjhw.ajbkvyweh7tvjl/ljhwZthlaukjlkulzlp/xianhuo.png"
                                        },
                                        {
                                            "border_radius": "",
                                            "text": "预计8小时内从浙江省宁波市发货,包邮",
                                            "type": "text"
                                        }
                                    ],
                                    "label_type": 0,
                                    "link": "sslocal://webcast_lynxview?add_safe_area_height=0&gravity=bottom&height_percent=60&mask_alpha=0.5&top_level=1&type=popup&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2Fwebcast%2Fecom%2Flynx%2Fecom_goods_detail_popup_panels%2Flogistics_timeliness_popup%2Ftemplate.js%3Finfos%3D%255B%257B%2522main_text%2522%253A%2522%25E9%25A2%2584%25E8%25AE%25A18%25E5%25B0%258F%25E6%2597%25B6%25E5%2586%2585%25E5%258F%2591%25E8%25B4%25A7%2522%252C%2522sub_text%2522%253A%2522%25E6%25A0%25B9%25E6%258D%25AE%25E8%25AF%25A5%25E5%2595%2586%25E5%2593%2581%25E8%25BF%25917%25E5%25A4%25A9%25E5%258F%2591%25E8%25B4%25A7%25E6%2583%2585%25E5%2586%25B5%25E6%258E%25A8%25E6%25B5%258B%25EF%25BC%258C%25E8%25AF%25A5%25E5%2595%2586%25E5%2593%2581%25E9%25A2%2584%25E8%25AE%25A18%25E5%25B0%258F%25E6%2597%25B6%25E5%2586%2585%25E5%25AE%258C%25E6%2588%2590%25E5%258F%2591%25E8%25B4%25A7%25EF%25BC%258C%25E5%2585%25B7%25E4%25BD%2593%25E4%25BB%25A5%25E5%2595%2586%25E5%25AE%25B6%25E5%25AE%259E%25E9%2599%2585%25E5%258F%2591%25E8%25B4%25A7%25E6%2597%25B6%25E9%2597%25B4%25E4%25B8%25BA%25E5%2587%2586%25E3%2580%2582%255Cn%25E8%25AE%25A2%25E5%258D%2595%25E6%2594%25AF%25E4%25BB%2598%25E6%2588%2590%25E5%258A%259F%25E5%2590%258E%25E8%258B%25A5%25E6%259C%25AA%25E5%259C%25A848%25E5%25B0%258F%25E6%2597%25B6%25E5%2586%2585%25E5%258F%2591%25E8%25B4%25A7%25EF%25BC%258C%25E6%25B6%2588%25E8%25B4%25B9%25E8%2580%2585%25E5%25B0%2586%25E5%25BE%2597%25E5%2588%25B0%25E8%25B5%2594%25E4%25BB%2598%25EF%25BC%2588%25E7%2589%25B9%25E6%25AE%258A%25E5%2595%2586%25E5%2593%2581%25E3%2580%2581%25E5%25A4%25A7%25E4%25BF%2583%25E6%25B4%25BB%25E5%258A%25A8%25E5%258F%258A%25E4%25B8%258D%25E5%258F%25AF%25E6%258A%2597%25E5%258A%259B%25E5%259B%25A0%25E7%25B4%25A0%25E9%2599%25A4%25E5%25A4%2596%25EF%25BC%2589%25E3%2580%2582%2522%257D%255D%26title%3D%25E7%2589%25A9%25E6%25B5%2581%25E6%2597%25B6%25E6%2595%2588%25E8%25AF%25B4%25E6%2598%258E&use_real_screen_height=1"
                                }
                            ],
                            "title": "物流"
                        },
                        "safety_content": {
                            "content_list": [
                                {
                                    "coms": [
                                        {
                                            "text": "7天无理由退货",
                                            "type": "text"
                                        },
                                        {
                                            "color": "rgba(22, 24, 35, 0.5)",
                                            "text": "·",
                                            "type": "text"
                                        },
                                        {
                                            "text": "极速退款",
                                            "type": "text"
                                        },
                                        {
                                            "color": "rgba(22, 24, 35, 0.5)",
                                            "text": "·",
                                            "type": "text"
                                        },
                                        {
                                            "text": "商家资质",
                                            "type": "text"
                                        }
                                    ],
                                    "label_type": 1,
                                    "render_type": 0
                                }
                            ],
                            "safety_popup_content": [
                                {
                                    "content": "符合相应条件时,消费者可申请7天无理由退货",
                                    "left_icon": "http://p3-item.ecombdimg.com/tos-cn-i-5mmsx3fupr/second_page_common_icon_blue.png~tplv-5mmsx3fupr-image.webp",
                                    "title": "7天无理由退货",
                                    "url": "sslocal://webcast_webview?radius=20&up_height_percent=73&up_offset_height=400&up_full_screen=1&up_trans_status_bar=1&close_icon_position=-1&pull_down_indicator_not_show=1&pull_down_close=1&type=popup&top_level=1&mask_alpha=0.3&height_percent=73&width_percent=100&open_animate=1&web_bg_color=ffffffff&use_real_screen_height=1&add_safe_area_height=0&gravity=bottom&loader_name=forest&use_wk_falcon=2&disable_host_jsb_method=1&disable_thread_spread=1&android_reuse_activity=1&enable_font_scale=1&pad_ratio=0.5&enable_pad_ratio=1&screen_size_adaptation=1&enable_pad_adapter=1&landscape_custom_height=1&rate_height=360&pad_use_phone_size=1&margin_right=0&margin_bottom=0&hide_nav_bar=1&trans_status_bar=1&status_bar_color=black&url=https%3A%2F%2Fffh.jinritemai.com%2Fforest%2Frender%2Ffe%2Ftemplate%2Fchannel%2Fecommerce_rights_pia2_h5%2Fhtml%2Fservice-rule-v2.html%3F_pia_%3D1%26enter_from_live_saas%3D0%26page_type%3Drule%26enter_from%3Dservice_configuration_platform%26privilege_code%3Dsupport_7days_refund%26biz_params%3D"
                                },
                                {
                                    "content": "满足相应条件时,待发货状态下,提交退款申请将免审核立即退款",
                                    "left_icon": "http://p3-item.ecombdimg.com/tos-cn-i-5mmsx3fupr/second_page_common_icon_blue.png~tplv-5mmsx3fupr-image.webp",
                                    "title": "极速退款",
                                    "url": "sslocal://webcast_webview?radius=20&up_height_percent=73&up_offset_height=400&up_full_screen=1&up_trans_status_bar=1&close_icon_position=-1&pull_down_indicator_not_show=1&pull_down_close=1&type=popup&top_level=1&mask_alpha=0.3&height_percent=73&width_percent=100&open_animate=1&web_bg_color=ffffffff&use_real_screen_height=1&add_safe_area_height=0&gravity=bottom&loader_name=forest&use_wk_falcon=2&disable_host_jsb_method=1&disable_thread_spread=1&android_reuse_activity=1&enable_font_scale=1&pad_ratio=0.5&enable_pad_ratio=1&screen_size_adaptation=1&enable_pad_adapter=1&landscape_custom_height=1&rate_height=360&pad_use_phone_size=1&margin_right=0&margin_bottom=0&hide_nav_bar=1&trans_status_bar=1&status_bar_color=black&url=https%3A%2F%2Fffh.jinritemai.com%2Fforest%2Frender%2Ffe%2Ftemplate%2Fchannel%2Fecommerce_rights_pia2_h5%2Fhtml%2Fservice-rule-v2.html%3F_pia_%3D1%26enter_from_live_saas%3D0%26page_type%3Drule%26enter_from%3Dservice_configuration_platform%26privilege_code%3Drefund_speed%26biz_params%3D"
                                },
                                {
                                    "content": "查看商家详细资质信息",
                                    "left_icon": "http://p3-item.ecombdimg.com/tos-cn-i-5mmsx3fupr/second_page_common_icon_blue.png~tplv-5mmsx3fupr-image.webp",
                                    "title": "商家资质",
                                    "url": "https://haohuo.jinritemai.com/views/shop/multipleLicenses?id=cOCwhiKF"
                                },
                                {
                                    "content": "点击查看平台公示专区",
                                    "left_icon": "http://p3-item.ecombdimg.com/tos-cn-i-5mmsx3fupr/second_page_common_icon_blue.png~tplv-5mmsx3fupr-image.webp",
                                    "tag": "public_zone",
                                    "title": "本商品享受上述商家服务",
                                    "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"
                                }
                            ],
                            "service_type": "6,5,9,10"
                        }
                    },
                    "redirect_location_v2": "",
                    "shop_coupon_data": [
    
                    ],
                    "shop_info": {
                        "basic_info": {
                            "account_url": "",
                            "background": "http://p26-detailpage.byteimg.com/tos-cn-i-ojoqa5bfdv/20b2e8d6ea843df4816686f5b295a769.png~tplv-ojoqa5bfdv-image.image",
                            "brand_icon": "",
                            "grade_info": {
                                "is_new_style": true,
                                "score": 5
                            },
                            "new_brand_icon": "",
                            "shop_extra_info": null,
                            "shop_icon_list": null,
                            "shop_link_button": {
                                "background": "#FE2C55FF",
                                "link": "sslocal://goods/store?entrance_location=product_detail_live&pass_through_api=%7B%22pre_product_id_new%22%3A%223675495476536410157%22%2C%22product_author_info_map%22%3A%22%7B%5C%223675495476536410157%5C%22%3A%5B%5C%22MS4wLjABAAAA2I9NdgAKZrz9e0tLm1csyDMNqLESPDm34TdYYqXe8-I%5C%22%5D%7D%22%7D&sec_shop_id=cOCwhiKF&url_maker=shop_sdk",
                                "text": "进店逛逛"
                            },
                            "shop_logo": "https://p3-item.ecombdimg.com/img/tos-cn-i-6vegkygxbk/a9d16fb1918e4bb09890c9577fe3192e~tplv-5mmsx3fupr-resize:74:74.png",
                            "shop_name": "GXG男装旗舰店",
                            "status_icon_info": {
                                "icon": "https://p3-piu.byteimg.com/tos-cn-i-8jisjyls3a/30c8e6e7757340babb23305267117929~tplv-8jisjyls3a-2:0:0:q75.image",
                                "icon_type": 1
                            }
                        },
                        "style_type": 0
                    },
                    "style_type": 0
                },
                "status_code": 0
            },
            "app_ver": "1.0.0-6.2",
            "_ddf": "fca",
            "app_ver_check": "ok",
            "format_check": "ok"
        },
        "error": "",
        "secache": "8551fc551ecf1096e5fb2cd2f58d2c9c",
        "secache_time": 1725587881,
        "secache_date": "2024-09-06 09:58:01",
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today: max:15000 all[=++];expires:2031-01-01",
        "execution_time": "3.157",
        "server_time": "Beijing/2024-09-06 09:58:01",
        "client_ip": "127.0.0.1",
        "call_args": {
            "num_iid": "3675495476536410157"
        },
        "api_type": "douyin",
        "translate_language": "zh-CN",
        "translate_engine": "Alex",
        "server_memory": "3.38MB",
        "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/2024-08-20 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(微信同号)