万邦拼多多根据ID取商品详情原数据 API 返回值说明

item_get_app-根据ID取商品详情原数据 [查看演示] API测试工具 注册开通

pinduoduo.item_get_app

  • pinduoduo.item_get_app-1.0.0-6.0.html
  • pinduoduo.item_get_app-2.0.0-7.0.html
  • pinduoduo.item_get_app-3.0.0-7.0.html
  • pinduoduo.item_get_app-4.0.0-7.0.html
  • pinduoduo.item_get_app-5.0.0-7.0.html
  • pinduoduo.item_get_app-5.0.2-7.0.html
  • pinduoduo.item_get_app-5.0.3-7.0.html
  • 公共参数

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

    参数说明:num_iid:商品ID ;

    响应参数

    Version: Date:

    名称 类型 必须 示例值 描述
    item
    Mix 0 获得拼多多app商品详情原数据
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
    $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" =>"pinduoduo",
    	                "api_name" =>"item_get_app",
    	                "api_params"=>array (
      'num_iid' => '1620002566',
    )
                    )
                );
     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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
    		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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
    	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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566"
    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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566", 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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"1620002566"})// 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":"pinduoduo",
         "api_name" : "item_get_app",
         "api_params": {"num_iid":"1620002566"}//num_iid=1620002566,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")
    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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")!
    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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566"];
    
    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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
      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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566");
             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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566", (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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")
        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/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")
    content(r)
    url = "https://api-gw.onebound.cn/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
    response = webread(url);
    disp(response);
    
    响应示例
    {
    "item": {
    		"destination_type": 2,
    		"destination_url": "order_checkout.html",
    		"goods": {
    			"brand_id": "",
    			"cat_id": 8484,
    			"cat_id_1": 8439,
    			"cat_id_2": 8456,
    			"cat_id_3": 8484,
    			"cat_id_4": 0,
    			"check_quantity": 1,
    			"country": "",
    			"decoration": [
    				{
    					"contents": [
    						{
    							"height": 400,
    							"img_url": "https://img.pddpic.com/mms-material-img/2022-09-18/3f89d470-1af8-4dee-b529-6d62aa2ea3b7.png",
    							"width": 750
    						}
    					],
    					"enable_share": 0,
    					"floor_id": 18102965153,
    					"key": "DecImage",
    					"priority": 0,
    					"type": "text"
    				},
    				{
    					"contents": [
    						{
    							"height": 330,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2019-02-15/ddf6fe7b-b536-4183-932d-69a1189a3f59.png",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965154,
    					"key": "DecImage",
    					"priority": 1,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/20f659b04d3e7e5851c27ff9931c96fc.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965155,
    					"key": "DecImage",
    					"priority": 2,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1058,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2019-11-14/4420a8c3-49ed-46d8-ab55-15e7a638ca31.jpg",
    							"width": 760
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965156,
    					"key": "DecImage",
    					"priority": 3,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/26c3e9d5cfbaf4e8f13b2bdd38f48d71.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965157,
    					"key": "DecImage",
    					"priority": 4,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/0aa872fa74599dad7b6aefe6b6c035c0.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965158,
    					"key": "DecImage",
    					"priority": 5,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/6bc959e32a30424c7a5284a37676999c.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965159,
    					"key": "DecImage",
    					"priority": 6,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/1fa9861a8c99c5e9e8119fd2239fef5a.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965160,
    					"key": "DecImage",
    					"priority": 7,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/b62cabf1d2320c5761e3f4c15203fb20.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965161,
    					"key": "DecImage",
    					"priority": 8,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/6f6e54376a66cbc78e16700d4c424fe1.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965162,
    					"key": "DecImage",
    					"priority": 9,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/2f60753dfc875a6876adc35833a69d31.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965163,
    					"key": "DecImage",
    					"priority": 10,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/ae0116e589d8de712f8dafd0c356cefe.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965164,
    					"key": "DecImage",
    					"priority": 11,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/da910c98fcc8de1b4d2d1498cd7899fd.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965165,
    					"key": "DecImage",
    					"priority": 12,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/140349649d8b7d08c8e88bfbbaa2f900.jpeg",
    							"width": 820
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965166,
    					"key": "DecImage",
    					"priority": 13,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/a953bae2eeb7364ef3ef2976a97d07eb.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965167,
    					"key": "DecImage",
    					"priority": 14,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/4da59828136c3b1308aad0aa990778a7.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965168,
    					"key": "DecImage",
    					"priority": 15,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 1500,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/4a365b61a80e47288c8609ccd5982396.jpeg",
    							"width": 750
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965169,
    					"key": "DecImage",
    					"priority": 16,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 800,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/cd0a8a96b783a51236812ce24c59a329.jpeg",
    							"width": 800
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965170,
    					"key": "DecImage",
    					"priority": 17,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 800,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/16008ac19768d05e7dee16406ff958a1.jpeg",
    							"width": 800
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965171,
    					"key": "DecImage",
    					"priority": 18,
    					"type": "image"
    				},
    				{
    					"contents": [
    						{
    							"height": 800,
    							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/ef1d17b69ebf9449a8bb52459b168c26.jpeg",
    							"width": 800
    						}
    					],
    					"enable_share": 1,
    					"floor_id": 18102965172,
    					"key": "DecImage",
    					"priority": 19,
    					"type": "image"
    				}
    			],
    			"detail_gallery": [
    				{
    					"goods_id": 1620002566,
    					"height": 400,
    					"priority": 8,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2022-09-18/3f89d470-1af8-4dee-b529-6d62aa2ea3b7.png",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 330,
    					"priority": 9,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2019-02-15/ddf6fe7b-b536-4183-932d-69a1189a3f59.png",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 10,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/20f659b04d3e7e5851c27ff9931c96fc.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1058,
    					"priority": 11,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2019-11-14/4420a8c3-49ed-46d8-ab55-15e7a638ca31.jpg",
    					"width": 760
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 12,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/26c3e9d5cfbaf4e8f13b2bdd38f48d71.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 13,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/0aa872fa74599dad7b6aefe6b6c035c0.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 14,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/6bc959e32a30424c7a5284a37676999c.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 15,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/1fa9861a8c99c5e9e8119fd2239fef5a.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 16,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/b62cabf1d2320c5761e3f4c15203fb20.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 17,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/6f6e54376a66cbc78e16700d4c424fe1.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 18,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/2f60753dfc875a6876adc35833a69d31.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 19,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/ae0116e589d8de712f8dafd0c356cefe.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 20,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/da910c98fcc8de1b4d2d1498cd7899fd.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 21,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/140349649d8b7d08c8e88bfbbaa2f900.jpeg",
    					"width": 820
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 22,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/a953bae2eeb7364ef3ef2976a97d07eb.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 23,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/4da59828136c3b1308aad0aa990778a7.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 24,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/4a365b61a80e47288c8609ccd5982396.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 800,
    					"priority": 25,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/cd0a8a96b783a51236812ce24c59a329.jpeg",
    					"width": 800
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 800,
    					"priority": 26,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/16008ac19768d05e7dee16406ff958a1.jpeg",
    					"width": 800
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 800,
    					"priority": 27,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/ef1d17b69ebf9449a8bb52459b168c26.jpeg",
    					"width": 800
    				}
    			],
    			"detail_video_gallery": [],
    			"gallery": [
    				{
    					"goods_id": 1620002566,
    					"id": 20373813733,
    					"priority": 0,
    					"type": 1,
    					"url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/bcf848aa71c6389607ae7a84b70f1543.jpeg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813734,
    					"priority": 1,
    					"type": 1,
    					"url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/176019babfdecffa1d9f98f40b7e99b4.jpeg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813735,
    					"priority": 2,
    					"type": 1,
    					"url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/efb5db42397550bffd3211ca6f197498.jpeg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813736,
    					"priority": 3,
    					"type": 1,
    					"url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/d209ef7bcc9183c3bb8ca1dfdb108d49.jpeg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813737,
    					"priority": 4,
    					"type": 1,
    					"url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/74257ab65f3f00da7a90fde9042fe640.jpeg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813738,
    					"priority": 5,
    					"type": 1,
    					"url": "https://img.pddpic.com/goods/images/2019-08-17/e8fbd9cb-cc74-4caa-9380-84c46d27b008.jpg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813739,
    					"priority": 6,
    					"type": 1,
    					"url": "https://img.pddpic.com/goods/images/2019-08-17/d76f515b-e375-4060-b94e-cf64f6b0964e.jpg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813740,
    					"priority": 7,
    					"type": 1,
    					"url": "https://img.pddpic.com/goods/images/2019-08-17/f2f279b5-6000-4fbe-b99b-7c1cbd7884ea.jpg"
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 400,
    					"priority": 8,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2022-09-18/3f89d470-1af8-4dee-b529-6d62aa2ea3b7.png",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 330,
    					"priority": 9,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2019-02-15/ddf6fe7b-b536-4183-932d-69a1189a3f59.png",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 10,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/20f659b04d3e7e5851c27ff9931c96fc.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1058,
    					"priority": 11,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2019-11-14/4420a8c3-49ed-46d8-ab55-15e7a638ca31.jpg",
    					"width": 760
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 12,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/26c3e9d5cfbaf4e8f13b2bdd38f48d71.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 13,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/0aa872fa74599dad7b6aefe6b6c035c0.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 14,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/6bc959e32a30424c7a5284a37676999c.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 15,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/1fa9861a8c99c5e9e8119fd2239fef5a.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 16,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/b62cabf1d2320c5761e3f4c15203fb20.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 17,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/6f6e54376a66cbc78e16700d4c424fe1.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 18,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/2f60753dfc875a6876adc35833a69d31.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 19,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/ae0116e589d8de712f8dafd0c356cefe.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 20,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/da910c98fcc8de1b4d2d1498cd7899fd.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 21,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/140349649d8b7d08c8e88bfbbaa2f900.jpeg",
    					"width": 820
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 22,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/a953bae2eeb7364ef3ef2976a97d07eb.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 23,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/4da59828136c3b1308aad0aa990778a7.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 1500,
    					"priority": 24,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/4a365b61a80e47288c8609ccd5982396.jpeg",
    					"width": 750
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 800,
    					"priority": 25,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/cd0a8a96b783a51236812ce24c59a329.jpeg",
    					"width": 800
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 800,
    					"priority": 26,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/16008ac19768d05e7dee16406ff958a1.jpeg",
    					"width": 800
    				},
    				{
    					"goods_id": 1620002566,
    					"height": 800,
    					"priority": 27,
    					"type": 2,
    					"url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/ef1d17b69ebf9449a8bb52459b168c26.jpeg",
    					"width": 800
    				}
    			],
    			"goods_id": 1620002566,
    			"goods_name": "【2件套】套装秋冬新款仿獭兔毛钉珠皮草毛毛短外套加厚大衣女装",
    			"goods_property": [
    				{
    					"key": "发货地",
    					"values": [
    						"江苏省"
    					]
    				},
    				{
    					"key": "面料材质",
    					"ref_pid": 346,
    					"reference_id": 0,
    					"values": [
    						"仿皮草"
    					]
    				},
    				{
    					"key": "成分含量",
    					"ref_pid": 396,
    					"reference_id": 0,
    					"values": [
    						"71%(含)—80%(含)"
    					]
    				},
    				{
    					"key": "版型",
    					"ref_pid": 318,
    					"reference_id": 0,
    					"values": [
    						"修身"
    					]
    				},
    				{
    					"key": "领型",
    					"ref_pid": 347,
    					"reference_id": 0,
    					"values": [
    						"圆领"
    					]
    				},
    				{
    					"key": "衣长",
    					"ref_pid": 319,
    					"reference_id": 0,
    					"values": [
    						"短款"
    					]
    				},
    				{
    					"key": "是否带毛领",
    					"ref_pid": 1104,
    					"reference_id": 0,
    					"values": [
    						"不带毛领"
    					]
    				},
    				{
    					"key": "主风格",
    					"ref_pid": 1728,
    					"reference_id": 0,
    					"values": [
    						"气质名媛"
    					]
    				}
    			],
    			"goods_property_type": "",
    			"goods_type": 1,
    			"group": [
    				{
    					"end_time": 2082729600,
    					"orderLimit": 999999,
    					"price": "0",
    					"require_num": "1",
    					"start_time": 1451577600
    				},
    				{
    					"end_time": 2082729600,
    					"orderLimit": 999999,
    					"price": "0",
    					"require_num": "2",
    					"start_time": 1451577600
    				}
    			],
    			"group_type": [
    				{
    					"end_time": 2082729600,
    					"orderLimit": 999999,
    					"price": "0",
    					"require_num": "1",
    					"start_time": 1451577600
    				},
    				{
    					"end_time": 2082729600,
    					"orderLimit": 999999,
    					"price": "0",
    					"require_num": "2",
    					"start_time": 1451577600
    				}
    			],
    			"hd_thumb_url": "",
    			"image_url": "https://omsproductionimg.yangkeduo.com/images/2018-06-06/864126a1f461e606796b2204d18a09e9.jpeg",
    			"is_onsale": 1,
    			"is_pre_sale": 0,
    			"is_sku_onsale": 1,
    			"is_subsidy": 0,
    			"main_gallery": [
    				{
    					"goods_id": 1620002566,
    					"id": 20373813733,
    					"priority": 0,
    					"type": 1,
    					"url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/bcf848aa71c6389607ae7a84b70f1543.jpeg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813734,
    					"priority": 1,
    					"type": 1,
    					"url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/176019babfdecffa1d9f98f40b7e99b4.jpeg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813735,
    					"priority": 2,
    					"type": 1,
    					"url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/efb5db42397550bffd3211ca6f197498.jpeg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813736,
    					"priority": 3,
    					"type": 1,
    					"url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/d209ef7bcc9183c3bb8ca1dfdb108d49.jpeg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813737,
    					"priority": 4,
    					"type": 1,
    					"url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/74257ab65f3f00da7a90fde9042fe640.jpeg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813738,
    					"priority": 5,
    					"type": 1,
    					"url": "https://img.pddpic.com/goods/images/2019-08-17/e8fbd9cb-cc74-4caa-9380-84c46d27b008.jpg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813739,
    					"priority": 6,
    					"type": 1,
    					"url": "https://img.pddpic.com/goods/images/2019-08-17/d76f515b-e375-4060-b94e-cf64f6b0964e.jpg"
    				},
    				{
    					"goods_id": 1620002566,
    					"id": 20373813740,
    					"priority": 7,
    					"type": 1,
    					"url": "https://img.pddpic.com/goods/images/2019-08-17/f2f279b5-6000-4fbe-b99b-7c1cbd7884ea.jpg"
    				}
    			],
    			"mall_id": 461742,
    			"pre_sale_time": "",
    			"preview_share_link": "mall_quality_assurance.html?_t_timestamp=comm_share_landing&goods_id=1620002566",
    			"prompt_explain": "服饰类商品如出现已洗涤,或吊牌已摘,或显著穿戴痕迹等影响二次销售情形,且无质量问题的,不支持七天无理由退换。",
    			"property_card_click": 0,
    			"property_show_num": 6,
    			"quantity": 1000,
    			"second_hand": 0,
    			"share_desc": "【2件套】套装秋冬新款仿獭兔毛钉珠皮草毛毛短外套加厚大衣女装",
    			"share_link": "goods1.html?goods_id=1620002566&page_from=0&pxq_secret_key=6WPSKBOT2D5ZJLCBJUURUYJD3OUV5XCEB5542FV4SSCLQD2262PQ",
    			"share_title": "【2件套】套装秋冬新款仿獭兔毛钉珠皮草毛毛短外套加厚大衣女装",
    			"side_sales_tip": "已拼4.2万件",
    			"sold_quantity": 42000,
    			"thumb_url": "https://omsproductionimg.yangkeduo.com/images/2018-06-06/864126a1f461e606796b2204d18a09e9.jpeg",
    			"vas_template_id": [],
    			"video_gallery": [],
    			"view_img": [
    				"https://omsproductionimg.yangkeduo.com/images/2017-12-12/bcf848aa71c6389607ae7a84b70f1543.jpeg",
    				"https://omsproductionimg.yangkeduo.com/images/2017-12-12/176019babfdecffa1d9f98f40b7e99b4.jpeg",
    				"https://omsproductionimg.yangkeduo.com/images/2017-12-12/efb5db42397550bffd3211ca6f197498.jpeg",
    				"https://omsproductionimg.yangkeduo.com/images/2017-12-12/d209ef7bcc9183c3bb8ca1dfdb108d49.jpeg",
    				"https://omsproductionimg.yangkeduo.com/images/2017-12-12/74257ab65f3f00da7a90fde9042fe640.jpeg",
    				"https://t00img.yangkeduo.com/goods/images/2019-08-17/e8fbd9cb-cc74-4caa-9380-84c46d27b008.jpg",
    				"https://t00img.yangkeduo.com/goods/images/2019-08-17/d76f515b-e375-4060-b94e-cf64f6b0964e.jpg",
    				"https://t00img.yangkeduo.com/goods/images/2019-08-17/f2f279b5-6000-4fbe-b99b-7c1cbd7884ea.jpg"
    			],
    			"warehouse": ""
    		},
    		"mall_entrance": {
    			"mall_data": {
    				"dsr": {
    					"desc_rank_percent": 57,
    					"desc_rank_status": 1,
    					"desc_score": 4.51,
    					"desc_status": 1,
    					"hide_rank_info": 0,
    					"is_show_mall_star": true,
    					"logistics_rank_percent": 57,
    					"logistics_rank_status": 1,
    					"logistics_score": 4.51,
    					"logistics_status": 1,
    					"mallRatingTextList": [
    						{
    							"mallRatingKey": {
    								"color": "#58595B",
    								"font": 13,
    								"txt": "描述相符"
    							},
    							"mallRatingValue": {
    								"backColor": "#FCE5E5",
    								"color": "#E02E24",
    								"font": 11,
    								"txt": "高"
    							}
    						},
    						{
    							"mallRatingKey": {
    								"color": "#58595B",
    								"font": 13,
    								"txt": "物流服务"
    							},
    							"mallRatingValue": {
    								"backColor": "#FCE5E5",
    								"color": "#E02E24",
    								"font": 11,
    								"txt": "高"
    							}
    						},
    						{
    							"mallRatingKey": {
    								"color": "#58595B",
    								"font": 13,
    								"txt": "服务态度"
    							},
    							"mallRatingValue": {
    								"backColor": "#FCE5E5",
    								"color": "#E02E24",
    								"font": 11,
    								"txt": "高"
    							}
    						}
    					],
    					"mallStar": 5,
    					"serviceRankPercent": 57,
    					"serviceRankStatus": 1,
    					"serviceScore": 4.51,
    					"serviceStatus": 1
    				},
    				"extras": {
    					"2": false,
    					"3": false,
    					"5": 1,
    					"7": false,
    					"8": true
    				},
    				"goods_num": 21,
    				"goods_numDesc": "商品数量: 21",
    				"hasMallDecoration": true,
    				"isFlagShip": false,
    				"isGuideMall": true,
    				"logo": "https://t16img.yangkeduo.com/pdd_ims/mainObject/v1/pub_2019081484d54dec4d3f4227aa60688b6a013df9.jpg",
    				"logoList": [],
    				"mallID": "461742",
    				"mallShowType": 0,
    				"mallTransferType": 0,
    				"mall_id": "461742",
    				"mall_logo": "http://t16img.yangkeduo.com/pdd_ims/mainObject/v1/pub_2019081484d54dec4d3f4227aa60688b6a013df9.jpg",
    				"mall_logoList": [],
    				"mall_name": "果果家气质女装",
    				"mall_service_tag": "客服",
    				"merchantType": 1,
    				"msn": "4433pm74zfzaktrcoppyi6hovu_axbuy",
    				"pddRoute": "mall_page.html?mall_id=461742&msn=4433pm74zfzaktrcoppyi6hovu_axbuy&mall_info=%7B%22mall_name%22%3A%22%E6%9E%9C%E6%9E%9C%E5%AE%B6%E6%B0%94%E8%B4%A8%E5%A5%B3%E8%A3%85%22%7D&has_decoration=1",
    				"pddRouteName": "进店逛逛",
    				"sales_tip": "已拼10万+件"
    			}
    		},
    		"neighbor_group": {
    			"neighbor_data": {
    				"combine_group": {
    					"combine_group_button_desc": "去拼单",
    					"combine_group_desc": "这些人已拼,参与可立即拼成",
    					"combine_group_list": [
    						{
    							"button_desc": "去拼单",
    							"group_order_id": "2050263926640011898",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0dBTll2cDd2SmJUZ1A3U1pOSFM4UkdDQ3VTMWVncmR4QT09djA0-1656577818?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "阿红"
    								}
    							],
    							"tag_list": [
    								{
    									"desc": "拼过2次",
    									"type": 2
    								}
    							]
    						},
    						{
    							"button_desc": "去拼单",
    							"group_order_id": "2036046936902630418",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0N4NHE4MEVBZjBtV243V0JEbitCRGc4NDhEd0V4Rjc3Zz09djA0-1622484238?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "龙少"
    								}
    							],
    							"tag_list": [
    								{
    									"desc": "拼过2次",
    									"type": 2
    								}
    							]
    						},
    						{
    							"button_desc": "去拼单",
    							"group_order_id": "2055279204350960286",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0gzTUMyN3E2ZVZZNWx5WWVaRURUZkhtZWc2ZjVkWVFIdz09djA0-1604192041?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "A奥克斯专卖@晓斌"
    								}
    							],
    							"tag_list": []
    						},
    						{
    							"button_desc": "去拼单",
    							"group_order_id": "2055137924483842194",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0JKYkF4MnI4S1RUWXo2K3QxSERwb3F1Yk5TT3hlT0JYUT09djA0-1645165265?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "茉莉花香"
    								},
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0xzbzF6T0J6ell2NlhUWlNIVFJSWmtaRFQyMXI1U3V3Zz09djA0-1639670506?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "???"
    								}
    							],
    							"tag_list": []
    						},
    						{
    							"button_desc": "去拼单",
    							"group_order_id": "2052102603201281281",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q1BLMEFVYXpMTTdzZTBBdDFFUWFzb3ZJN2JNSzNLbHBaUT09djA0-1627214991?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "一々"
    								}
    							],
    							"tag_list": []
    						},
    						{
    							"button_desc": "去拼单",
    							"group_order_id": "2053438378219082508",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q01LZ2piaVZ6cWhpdkp6NmFnK3dmL0NCbGdDc3BMa08vZz09djA0-1639202473?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "ℳℓ林ℳℓ"
    								},
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0lCVHlqTWdlMnBqOHBuamk1cnhvcm90anh1TXp4OUpQdz09djA0-1640173046?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "一生一世永远快乐!"
    								}
    							],
    							"tag_list": []
    						},
    						{
    							"button_desc": "去拼单",
    							"group_order_id": "2056163425821613081",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/avatar/default/10.png",
    									"is_friend": false,
    									"nickname": "最亮的那颗星星"
    								}
    							],
    							"tag_list": []
    						},
    						{
    							"button_desc": "去拼单",
    							"group_order_id": "2058686691522064034",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0VnRmJoMU5SanN6M2NKcnd0ME5JSzU3bkN0NWZmTnVUdz09djA0-1634787853?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "开心过一生"
    								}
    							],
    							"tag_list": []
    						},
    						{
    							"button_desc": "去拼单",
    							"group_order_id": "2056644412906462765",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0JsODFDbG9ML3VwMnhweUVURzBsR0FiUkd0RmN2djRLZz09djA0-1657445886?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "安然"
    								},
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0xvbnIvTEhpRXVKVnF2dWVleStxNlRXL1lqL1llRnFkZz09djA0-1648310009?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "回眸泪流满面!"
    								}
    							],
    							"tag_list": []
    						},
    						{
    							"button_desc": "去拼单",
    							"group_order_id": "2054629947842220307",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0RJVHF4WlFsS3RVK2dZTXRKWVA2QzlLYVlINUdWQXZSZz09djA0-1618386309?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "朱吉兵,家长159****6283"
    								}
    							],
    							"tag_list": []
    						}
    					],
    					"combine_group_popup_footer": "仅显示10个可参与的拼单",
    					"combine_group_popup_title": "可参与的拼单",
    					"group_total": 10,
    					"pulldown_group": {
    						"group_info": {
    							"button_desc": "去拼单",
    							"group_order_id": "2050263926640011898",
    							"group_type": 1,
    							"is_self_group": false,
    							"is_shared": false,
    							"member_info_list": [
    								{
    									"avatar": "https://avatar3.pddpic.com/a/Q0dBTll2cDd2SmJUZ1A3U1pOSFM4UkdDQ3VTMWVncmR4QT09djA0-1656577818?imageMogr2/thumbnail/100x",
    									"is_friend": false,
    									"nickname": "阿红"
    								}
    							]
    						},
    						"group_title_info": {
    							"group_title_desc": "这些人已拼,参与可立即拼成",
    							"need_join_countdown": false
    						}
    					},
    					"recommend_group": {
    						"button_desc": "去拼单",
    						"group_order_id": "2050263926640011898",
    						"group_type": 1,
    						"is_self_group": false,
    						"is_shared": false,
    						"member_info_list": [
    							{
    								"avatar": "https://avatar3.pddpic.com/a/Q0dBTll2cDd2SmJUZ1A3U1pOSFM4UkdDQ3VTMWVncmR4QT09djA0-1656577818?imageMogr2/thumbnail/100x",
    								"is_friend": false,
    								"nickname": "阿红"
    							}
    						],
    						"tag_list": [
    							{
    								"desc": "拼过2次",
    								"type": 2
    							}
    						]
    					}
    				}
    			},
    			"neighbor_status": 1
    		},
    		"pre_render_url": "csr/comm_mall_home_pre_render.html",
    		"price": {
    			"browser_price_style": 0,
    			"line_price": 20900,
    			"max_group_price": 9540,
    			"max_normal_price": 11500,
    			"max_on_sale_group_price": 9540,
    			"max_on_sale_normal_price": 11500,
    			"min_group_price": 9540,
    			"min_normal_price": 11500,
    			"min_on_sale_group_price": 9540,
    			"min_on_sale_normal_price": 11500,
    			"new_price_prefix": "券前",
    			"price_style": 0,
    			"unselect_normal_save_price": 1960
    		},
    		"promotion": {
    			"promotionEvents": []
    		},
    		"review": {
    			"reviewNum": 15000,
    			"review_data": {
    				"review_num": 15000
    			},
    			"review_num": 15000
    		},
    		"server_time": 1670042713,
    		"service_promise": [
    			{
    				"desc": "订单发货后90天内如果申请退货退款或换货,商家将补贴退货运费",
    				"detail_hidden": 0,
    				"dialog_type": "退货包运费",
    				"id": 3,
    				"navigation": 0,
    				"navigationUrl": "",
    				"showTip": "收货后如不满意,可以免费退货",
    				"top": 1,
    				"topType": 1,
    				"type": "退货包运费",
    				"type_color": "#58595B"
    			},
    			{
    				"desc": "所有商品包邮",
    				"detail_hidden": 0,
    				"dialog_type": "全场包邮",
    				"id": 1,
    				"navigation": 0,
    				"navigationUrl": "",
    				"top": 0,
    				"topType": 0,
    				"type": "全场包邮",
    				"type_color": "#58595B"
    			},
    			{
    				"desc": "满足相应条件(吊牌无缺失、未洗涤)时,消费者可申请“7天无理由退货”",
    				"detail_hidden": 0,
    				"dialog_type": "7天无理由退货",
    				"id": 2,
    				"navigation": 0,
    				"navigationUrl": "",
    				"top": 0,
    				"topType": 0,
    				"type": "7天无理由退货",
    				"type_color": "#58595B"
    			},
    			{
    				"desc": "若未在48小时内发货,消费者将会收到至少3元无门槛代金券",
    				"detail_hidden": 0,
    				"dialog_type": "48小时发货",
    				"id": 13,
    				"navigation": 0,
    				"navigationUrl": "",
    				"top": 0,
    				"topType": 0,
    				"type": "48小时发货",
    				"type_color": "#58595B"
    			}
    		],
    		"sku": [
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 204,
    				"sku_id": 57114357891,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115500378,119128",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "粉色两件套(外套+裙子)",
    						"spec_value_id": 1115500378
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "S(90斤以下)",
    						"spec_value_id": 119128
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 85,
    				"sku_id": 57114357892,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115500378,96784",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "粉色两件套(外套+裙子)",
    						"spec_value_id": 1115500378
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "M(90-100斤)",
    						"spec_value_id": 96784
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 205,
    				"sku_id": 57114357893,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115500378,33651",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "粉色两件套(外套+裙子)",
    						"spec_value_id": 1115500378
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "L(100-110斤)",
    						"spec_value_id": 33651
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 231,
    				"sku_id": 57114357894,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115500378,33652",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "粉色两件套(外套+裙子)",
    						"spec_value_id": 1115500378
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "XL(110-120斤)",
    						"spec_value_id": 33652
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 260,
    				"sku_id": 57114357895,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115500378,33653",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "粉色两件套(外套+裙子)",
    						"spec_value_id": 1115500378
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "2XL(120-130斤)",
    						"spec_value_id": 33653
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 75,
    				"sku_id": 57114357896,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115500378,33656",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "粉色两件套(外套+裙子)",
    						"spec_value_id": 1115500378
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "3XL(130-140斤)",
    						"spec_value_id": 33656
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 1000,
    				"sku_id": 57114357897,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115501666,119128",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "米色两件套(外套+裙子)",
    						"spec_value_id": 1115501666
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "S(90斤以下)",
    						"spec_value_id": 119128
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 231,
    				"sku_id": 57114357898,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115501666,96784",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "米色两件套(外套+裙子)",
    						"spec_value_id": 1115501666
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "M(90-100斤)",
    						"spec_value_id": 96784
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 231,
    				"sku_id": 57114357899,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115501666,33651",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "米色两件套(外套+裙子)",
    						"spec_value_id": 1115501666
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "L(100-110斤)",
    						"spec_value_id": 33651
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 630,
    				"sku_id": 57114357900,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115501666,33652",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "米色两件套(外套+裙子)",
    						"spec_value_id": 1115501666
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "XL(110-120斤)",
    						"spec_value_id": 33652
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 110,
    				"sku_id": 57114357901,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115501666,33653",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "米色两件套(外套+裙子)",
    						"spec_value_id": 1115501666
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "2XL(120-130斤)",
    						"spec_value_id": 33653
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 273,
    				"sku_id": 57114357902,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "1115501666,33656",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "米色两件套(外套+裙子)",
    						"spec_value_id": 1115501666
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "3XL(130-140斤)",
    						"spec_value_id": 33656
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 583,
    				"sku_id": 103851107855,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "105309781,119128",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "蓝色两件套(外套+裙子)",
    						"spec_value_id": 105309781
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "S(90斤以下)",
    						"spec_value_id": 119128
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/48b30664f0f7e526ab1b956e813f25cf.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 564,
    				"sku_id": 103851107856,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "105309781,96784",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "蓝色两件套(外套+裙子)",
    						"spec_value_id": 105309781
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "M(90-100斤)",
    						"spec_value_id": 96784
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/3660b7893ca5cda1ffcea745d10b2506.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 878,
    				"sku_id": 103851107857,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "105309781,33651",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "蓝色两件套(外套+裙子)",
    						"spec_value_id": 105309781
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "L(100-110斤)",
    						"spec_value_id": 33651
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/a4a5a671afbb2d8e1f4c21c0ced3bea8.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 581,
    				"sku_id": 103851107858,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "105309781,33652",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "蓝色两件套(外套+裙子)",
    						"spec_value_id": 105309781
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "XL(110-120斤)",
    						"spec_value_id": 33652
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/f0551176629bf81f25757c160198dba1.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 580,
    				"sku_id": 103851107853,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "105309781,33653",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "蓝色两件套(外套+裙子)",
    						"spec_value_id": 105309781
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "2XL(120-130斤)",
    						"spec_value_id": 33653
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/801a2e23140bfe76229f02aab0a8a5fe.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			},
    			{
    				"group_price": 9540,
    				"is_onsale": 1,
    				"is_sku_pre_sale": 0,
    				"normal_price": 11500,
    				"normal_save_price": 1960,
    				"price_display": [],
    				"quantity": 589,
    				"sku_id": 103851107854,
    				"sku_pre_sale_time": "",
    				"sku_pre_sale_tip": "",
    				"spec": "105309781,33656",
    				"specs": [
    					{
    						"spec_key": "颜色",
    						"spec_key_id": 1215,
    						"spec_value": "蓝色两件套(外套+裙子)",
    						"spec_value_id": 105309781
    					},
    					{
    						"spec_key": "尺码",
    						"spec_key_id": 1226,
    						"spec_value": "3XL(130-140斤)",
    						"spec_value_id": 33656
    					}
    				],
    				"thumb_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/2f202934f16f0eee41257b77bf489262.jpeg",
    				"weight": 0,
    				"yellow_label_list": [
    					{
    						"labelText": "2件9.5折",
    						"labelType": "single_goods_percentage_event"
    					}
    				]
    			}
    		],
    		"source": "66",
    		"specs": [
    			{
    				"spec_key": "颜色",
    				"spec_key_id": 1215,
    				"spec_values": [
    					{
    						"1115500378": "粉色两件套(外套+裙子)"
    					},
    					{
    						"1115501666": "米色两件套(外套+裙子)"
    					},
    					{
    						"105309781": "蓝色两件套(外套+裙子)"
    					}
    				]
    			},
    			{
    				"spec_key": "尺码",
    				"spec_key_id": 1226,
    				"spec_values": [
    					{
    						"119128": "S(90斤以下)"
    					},
    					{
    						"96784": "M(90-100斤)"
    					},
    					{
    						"33651": "L(100-110斤)"
    					},
    					{
    						"33652": "XL(110-120斤)"
    					},
    					{
    						"33653": "2XL(120-130斤)"
    					},
    					{
    						"33656": "3XL(130-140斤)"
    					}
    				]
    			}
    		],
    		"status": 1,
    		"ui": {
    			"new_price_section": {
    				"bg_color": "#FFFFFF",
    				"color": "#E02E24",
    				"desc_color": "#58595B",
    				"desc_labels": [
    					"已拼4.2万件"
    				],
    				"imp_tracks": [
    					{
    						"extra": {
    							"type": 0
    						},
    						"page_el_sn": "5049756"
    					}
    				],
    				"is_elder": 0,
    				"is_normal": 1,
    				"line_price": "¥209",
    				"prefix_rich": [
    					{
    						"font": 15,
    						"txt": "¥",
    						"type": 1
    					}
    				],
    				"price": "95.4",
    				"price_rich": [
    					{
    						"font": 28,
    						"txt": "95.4",
    						"type": 1
    					}
    				],
    				"type": "normal"
    			},
    			"rank_section": ""
    		},
    		"_ddf": "ti",
    		"format_check": "ok"
    	},
    	"error": "",
    	"secache": "c98b29872e8a4b28859db207944ba817",
    	"secache_time": 1670637790,
    	"secache_date": "2022-12-10 10:03:10",
    	"reason": "",
    	"error_code": "0000",
    	"cache": 0,
    	"api_info": "today:82 max:20000 all[114=82+29+3];expires:2023-05-13",
    	"execution_time": "0.435",
    	"server_time": "Beijing/2022-12-10 10:03:10",
    	"client_ip": "106.6.43.22",
    	"call_args": {
    		"num_iid": "1620002566"
    	},
    	"api_type": "pinduoduo",
    	"translate_language": "zh-CN",
    	"translate_engine": "baidu",
    	"server_memory": "3.55MB",
    	"request_id": "gw-1.6393e8de09b56",
    	"last_id": "1404598933"
    }
    异常示例
    {
    		"error": "item-not-found",
    		"reason": "商品没找到",
    		"error_code": "2000",
    		"success": 0,
    		"cache": 0,
    		"api_info": "today:0 max:10000",
    		"execution_time": 0.081,
    		"server_time": "Beijing/2020-06-10 23:44:00",
    		"call_args": [],
    		"api_type": "pinduoduo",
    		"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(微信同号)