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

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

pinduoduo.item_get_app_pro(Ver:2.0.0-6.0)

  • pinduoduo.item_get_app_pro-1.0.0-6.0.html
  • pinduoduo.item_get_app_pro-2.0.0-6.0.html
  • pinduoduo.item_get_app_pro-3.0.0-7.0.html
  • pinduoduo.item_get_app_pro-3.0.1-7.0.html
  • pinduoduo.item_get_app_pro-3.0.2-7.0.html
  • 公共参数

    请求地址: https://api-gw.onebound.cn/pinduoduo/item_get_app_pro

    名称 类型 必须 描述
    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_pro/?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_pro/?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_pro",
    	                "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_pro/?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_pro/?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_pro/?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_pro/?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_pro/?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_pro",
         "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_pro/?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_pro/?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_pro/?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_pro/?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_pro/?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_pro/?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_pro/?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_pro/?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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")
    content(r)
    url = "https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
    response = webread(url);
    disp(response);
    
    响应示例
    {
    "item": {
    		"server_time": 1702026323,
    		"mall_entrance": {
    			"mall_data": {
    				"mall_show_type": 0,
    				"dsr": {
    					"desc_rank_percent": 40,
    					"logistics_rank_status": 1,
    					"logistics_score": 4.51,
    					"desc_rank_status": 1,
    					"mall_rating_text_list": [
    						{
    							"mall_rating_value": {
    								"txt": "高",
    								"color": "#E02E24",
    								"back_color": "#FCE5E5",
    								"font": 11
    							},
    							"mall_rating_key": {
    								"txt": "描述相符",
    								"color": "#58595B",
    								"font": 13
    							}
    						},
    						{
    							"mall_rating_value": {
    								"txt": "高",
    								"color": "#E02E24",
    								"back_color": "#FCE5E5",
    								"font": 11
    							},
    							"mall_rating_key": {
    								"txt": "物流服务",
    								"color": "#58595B",
    								"font": 13
    							}
    						},
    						{
    							"mall_rating_value": {
    								"txt": "高",
    								"color": "#E02E24",
    								"back_color": "#FCE5E5",
    								"font": 11
    							},
    							"mall_rating_key": {
    								"txt": "服务态度",
    								"color": "#58595B",
    								"font": 13
    							}
    						}
    					],
    					"logistics_status": 1,
    					"logistics_rank_percent": 40,
    					"mall_star": 4.5,
    					"service_rank_status": 1,
    					"is_show_mall_star": true,
    					"service_score": 4.51,
    					"hide_rank_info": 0,
    					"service_status": 1,
    					"desc_score": 4.51,
    					"service_rank_percent": 40,
    					"desc_status": 1
    				},
    				"sales_tip_v2": "全店已拼100万+件",
    				"logo_list": [],
    				"extras": {
    					"2": false,
    					"3": false,
    					"5": 1,
    					"7": false,
    					"8": true
    				},
    				"msn": "4wzimkivn7cta4w3gtjjucxrpa_axbuy",
    				"mall_sales": 1000000,
    				"pdd_route": "mall_page.html?mall_id=240723320&msn=4wzimkivn7cta4w3gtjjucxrpa_axbuy&mall_info=%7B%22mall_name%22%3A%22%E5%B8%95%E5%85%B0%E6%9C%B5%E8%88%92%E6%AF%85%E4%B8%93%E5%8D%96%E5%BA%97%22%7D",
    				"hide_ship_address": false,
    				"mall_id": "240723320",
    				"is_flag_ship": false,
    				"mall_name": "帕兰朵舒毅专卖店",
    				"goods_num_desc": "商品数量: 38",
    				"merchant_type": 4,
    				"mall_head_tag_vo": {
    					"icon_url": "https://funimg.pddpic.com/d33e814f-b115-4877-8dfb-cf6bb13b0a6e.png",
    					"icon_width": 11,
    					"mall_page_head_show_tag_volist": [
    						{
    							"script_color": "#58595B",
    							"show_tag_type": 2,
    							"desc": "假一赔十"
    						},
    						{
    							"script_color": "#58595B",
    							"desc": "保证金"
    						},
    						{
    							"script_color": "#58595B",
    							"show_tag_type": 1,
    							"desc": "3年老店"
    						}
    					],
    					"bg_img_url": "https://funimg.pddpic.com/2021-01-05/50063bdc-47ab-4134-91cf-bc13fe1fa5bb.png",
    					"icon_height": 13,
    					"action": "highLayer",
    					"title": "店铺保障",
    					"action_params": {
    						"name": "pdd_mall_guarantee_layer",
    						"url": "pdd_mall_lego_pages.html?lego_minversion=5.78.0&minversion=5.78.0&lego_type=v8&lego_ssr_api=%2Fapi%2Fpdd_mall_lego_pages%2Fget_config%2Fpdd_mall_guarantee_layer&source=3&mall_id=240723320"
    					}
    				},
    				"is_guide_mall": false,
    				"sales_tip": "已拼100万+件",
    				"pdd_route_name": "进店逛逛",
    				"mall_service_tag": "客服",
    				"mall_fav_vo": {
    					"show_button": false
    				},
    				"mall_logo": "http://t16img.yangkeduo.com/pdd_ims/img_check/v2/FFE6E6E62F2C0520200112174412259/ff04f33db17145c6bb8c382de91931c8.png",
    				"goods_num": 38,
    				"mall_transfer_type": 0,
    				"mall_logo_list": [],
    				"has_mall_decoration": false
    			}
    		},
    		"activity_collection": {
    			"activity": {
    				"regular_limit_duration": 0,
    				"shopping_merge_type": 0,
    				"sale_level_type": 0,
    				"is_app": false,
    				"activity_end_time": 1798732799,
    				"cost_type": 0,
    				"play_options": [],
    				"remain_quantity": 2147483647,
    				"sub_activity_type": 0,
    				"view_type": 2,
    				"activity_start_time": 1700789465,
    				"relation_type": 0,
    				"detail_id": 3666189186,
    				"user_activity_limit": 0,
    				"hidden_in_neighbor": false,
    				"activity_options": [
    					29
    				],
    				"play_type": 0,
    				"activity_type": 101,
    				"activity_id": 3666189186,
    				"total_quantity": 2147483647,
    				"target_customer_num": 0,
    				"status": 1
    			}
    		},
    		"pre_render_url": "csr/comm_mall_home_pre_render.html",
    		"destination_url": "order_checkout.html?_oc_rank_id=167071928010701",
    		"goods": {
    			"country": "",
    			"vas_template_id": [],
    			"shipment_limit_second": 172800,
    			"goods_property": [
    				{
    					"reference_id": 1629,
    					"ref_pid": 310,
    					"values": [
    						"PLANDOO/帕兰朵"
    					],
    					"key": "品牌"
    				},
    				{
    					"values": [
    						"浙江省"
    					],
    					"key": "发货地"
    				},
    				{
    					"reference_id": 0,
    					"ref_pid": 349,
    					"values": [
    						"棉"
    					],
    					"key": "面料俗称"
    				},
    				{
    					"reference_id": 0,
    					"ref_pid": 353,
    					"values": [
    						"棉"
    					],
    					"key": "面料主材质"
    				},
    				{
    					"reference_id": 0,
    					"ref_pid": 396,
    					"values": [
    						"51%(含)—70%(含)"
    					],
    					"key": "成分含量"
    				},
    				{
    					"reference_id": 0,
    					"ref_pid": 340,
    					"values": [
    						"情侣"
    					],
    					"key": "适用性别"
    				},
    				{
    					"reference_id": 0,
    					"ref_pid": 341,
    					"values": [
    						"常规"
    					],
    					"key": "厚薄"
    				},
    				{
    					"reference_id": 0,
    					"ref_pid": 322,
    					"values": [
    						"简约"
    					],
    					"key": "风格"
    				},
    				{
    					"reference_id": 0,
    					"ref_pid": 348,
    					"values": [
    						"纯色"
    					],
    					"key": "服装款式细节"
    				},
    				{
    					"reference_id": 0,
    					"ref_pid": 750,
    					"values": [
    						"纯色"
    					],
    					"key": "图案"
    				},
    				{
    					"reference_id": 0,
    					"ref_pid": 351,
    					"values": [
    						"抗菌"
    					],
    					"key": "功能"
    				}
    			],
    			"customer_num": 2,
    			"hd_url": "https://img.pddpic.com/mms-material-img/2023-09-22/68638c95-e603-425f-a983-04c51969d336.jpeg",
    			"hd_thumb_url": "https://img.pddpic.com/gaudit-image/2023-10-17/b2c3d1ddc049883f127386198212273d.jpeg",
    			"app_client_only": 0,
    			"property_card_click": 0,
    			"is_onsale": 1,
    			"tag_icon": [
    				{
    					"width": 138,
    					"id": 10024,
    					"url": "https://funimg.pddpic.com/hot_friends/46620ad7-6c77-4c8e-ae7e-369a7c2f52e2.png",
    					"height": 51
    				}
    			],
    			"has_cost": 0,
    			"off_sale_type": -1,
    			"service_promise_version": 0,
    			"event_type": 0,
    			"has_activity": 1,
    			"second_hand": 0,
    			"is_cold_goods": 0,
    			"mall_id": 240723320,
    			"share_desc": "艾草香薰袜子男款中筒秋冬款纯色芳香防臭抗菌高筒黑白色运动短袜",
    			"options": [
    				54,
    				7,
    				9,
    				60,
    				13
    			],
    			"tag": 10024,
    			"show_rec": 1,
    			"spu_id": 0,
    			"preview_share_link": "mall_quality_assurance.html?_t_timestamp=comm_share_landing&goods_id=525539096007",
    			"decoration": [
    				{
    					"enable_share": 1,
    					"contents": [
    						{
    							"img_url": "https://img.pddpic.com/mms-material-img/2023-09-14/daf41817-e165-4af7-9337-138fc156d1d8.jpeg.a.jpeg",
    							"width": 800,
    							"height": 1206
    						}
    					],
    					"floor_id": 40400278211,
    					"type": "image",
    					"priority": 0,
    					"key": "DecImage"
    				},
    				{
    					"enable_share": 1,
    					"contents": [
    						{
    							"img_url": "https://img.pddpic.com/mms-material-img/2023-09-14/cff184c9-8178-48b2-88ac-f9715fc87d05.jpeg.a.jpeg",
    							"width": 800,
    							"height": 1205
    						}
    					],
    					"floor_id": 40400278212,
    					"type": "image",
    					"priority": 1,
    					"key": "DecImage"
    				},
    				{
    					"enable_share": 1,
    					"contents": [
    						{
    							"img_url": "https://img.pddpic.com/mms-material-img/2023-09-14/559e8420-abda-4437-9a71-6672a9799259.jpeg.a.jpeg",
    							"width": 800,
    							"height": 1206
    						}
    					],
    					"floor_id": 40400278213,
    					"type": "image",
    					"priority": 2,
    					"key": "DecImage"
    				},
    				{
    					"enable_share": 1,
    					"contents": [
    						{
    							"img_url": "https://img.pddpic.com/mms-material-img/2023-09-14/fa2bdb7f-ed82-4729-9f5f-c0bec4c2c72b.jpeg.a.jpeg",
    							"width": 800,
    							"height": 1205
    						}
    					],
    					"floor_id": 40400278214,
    					"type": "image",
    					"priority": 3,
    					"key": "DecImage"
    				},
    				{
    					"enable_share": 1,
    					"contents": [
    						{
    							"img_url": "https://img.pddpic.com/mms-material-img/2023-09-14/75cfcb1a-770f-43fd-b747-4ac15d144189.jpeg.a.jpeg",
    							"width": 800,
    							"height": 1206
    						}
    					],
    					"floor_id": 40400278215,
    					"type": "image",
    					"priority": 4,
    					"key": "DecImage"
    				},
    				{
    					"enable_share": 1,
    					"contents": [
    						{
    							"img_url": "https://img.pddpic.com/mms-material-img/2023-09-14/e53bd46f-db4f-4333-90c7-b16f9cfeb36f.jpeg.a.jpeg",
    							"width": 800,
    							"height": 1206
    						}
    					],
    					"floor_id": 40400278216,
    					"type": "image",
    					"priority": 5,
    					"key": "DecImage"
    				},
    				{
    					"enable_share": 1,
    					"contents": [
    						{
    							"img_url": "https://img.pddpic.com/mms-material-img/2023-09-14/92dc2a8a-114b-4b8e-9344-0aac3cdeba15.jpeg.a.jpeg",
    							"width": 800,
    							"height": 1205
    						}
    					],
    					"floor_id": 40400278217,
    					"type": "image",
    					"priority": 6,
    					"key": "DecImage"
    				},
    				{
    					"enable_share": 1,
    					"contents": [
    						{
    							"img_url": "https://img.pddpic.com/mms-material-img/2023-09-14/bd0f85bb-a3e0-4aff-b07a-b7b6283dac97.jpeg.a.jpeg",
    							"width": 800,
    							"height": 1206
    						}
    					],
    					"floor_id": 40400278218,
    					"type": "image",
    					"priority": 7,
    					"key": "DecImage"
    				},
    				{
    					"enable_share": 1,
    					"contents": [
    						{
    							"img_url": "https://img.pddpic.com/mms-material-img/2023-09-14/9b1327c0-cead-4924-864c-0cda412e8707.jpeg.a.jpeg",
    							"width": 800,
    							"height": 1205
    						}
    					],
    					"floor_id": 40400278219,
    					"type": "image",
    					"priority": 8,
    					"key": "DecImage"
    				},
    				{
    					"enable_share": 1,
    					"contents": [
    						{
    							"img_url": "https://img.pddpic.com/mms-material-img/2023-09-14/c546161d-23ab-4ecd-90f1-dd4944450974.jpeg.a.jpeg",
    							"width": 800,
    							"height": 1206
    						}
    					],
    					"floor_id": 40400278220,
    					"type": "image",
    					"priority": 9,
    					"key": "DecImage"
    				}
    			],
    			"gallery": [
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1080601148042,
    					"priority": 19,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-14/c546161d-23ab-4ecd-90f1-dd4944450974.jpeg.a.jpeg",
    					"height": 1206
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815026,
    					"priority": 18,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-14/9b1327c0-cead-4924-864c-0cda412e8707.jpeg.a.jpeg",
    					"height": 1205
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815025,
    					"priority": 17,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-14/bd0f85bb-a3e0-4aff-b07a-b7b6283dac97.jpeg.a.jpeg",
    					"height": 1206
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815024,
    					"priority": 16,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-14/92dc2a8a-114b-4b8e-9344-0aac3cdeba15.jpeg.a.jpeg",
    					"height": 1205
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815023,
    					"priority": 15,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-14/e53bd46f-db4f-4333-90c7-b16f9cfeb36f.jpeg.a.jpeg",
    					"height": 1206
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815022,
    					"priority": 14,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-14/75cfcb1a-770f-43fd-b747-4ac15d144189.jpeg.a.jpeg",
    					"height": 1206
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815021,
    					"priority": 13,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-14/fa2bdb7f-ed82-4729-9f5f-c0bec4c2c72b.jpeg.a.jpeg",
    					"height": 1205
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815020,
    					"priority": 12,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-14/559e8420-abda-4437-9a71-6672a9799259.jpeg.a.jpeg",
    					"height": 1206
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815019,
    					"priority": 11,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-14/cff184c9-8178-48b2-88ac-f9715fc87d05.jpeg.a.jpeg",
    					"height": 1205
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815018,
    					"priority": 10,
    					"type": 2,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-14/daf41817-e165-4af7-9337-138fc156d1d8.jpeg.a.jpeg",
    					"height": 1206
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815017,
    					"priority": 9,
    					"type": 1,
    					"url": "https://img.pddpic.com/mms-material-img/2023-10-04/b9dbf0a6-c08b-4aca-abd7-d44005ed387a.jpeg.a.jpeg",
    					"height": 800
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815016,
    					"priority": 8,
    					"type": 1,
    					"url": "https://img.pddpic.com/mms-material-img/2023-10-04/d1bd6506-bd7f-46f3-b7ab-37f0df883bcf.jpeg.a.jpeg",
    					"height": 800
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815015,
    					"priority": 7,
    					"type": 1,
    					"url": "https://img.pddpic.com/mms-material-img/2023-10-04/38170dc0-69a7-404f-9b67-4365b191d907.jpeg.a.jpeg",
    					"height": 800
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815014,
    					"priority": 6,
    					"type": 1,
    					"url": "https://img.pddpic.com/mms-material-img/2023-10-04/d8d0a6fc-6357-4ce2-8a2d-8e5702f41138.jpeg.a.jpeg",
    					"height": 800
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815013,
    					"priority": 5,
    					"type": 1,
    					"url": "https://img.pddpic.com/mms-material-img/2023-10-04/f756a701-cbdf-45fe-9554-e275b5e2b5b7.jpeg.a.jpeg",
    					"height": 800
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815012,
    					"priority": 4,
    					"type": 1,
    					"url": "https://img.pddpic.com/mms-material-img/2023-10-04/fa172c33-84c1-4864-984e-05a48654fc14.jpeg.a.jpeg",
    					"height": 800
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815011,
    					"priority": 3,
    					"type": 1,
    					"url": "https://img.pddpic.com/mms-material-img/2023-10-04/85707486-77a1-49cc-877f-fa5826166c5f.jpeg.a.jpeg",
    					"height": 800
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815010,
    					"priority": 2,
    					"type": 1,
    					"url": "https://img.pddpic.com/mms-material-img/2023-10-04/6c3d7f86-ce34-47c9-a394-3068248ba3b8.jpeg.a.jpeg",
    					"height": 800
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815009,
    					"priority": 1,
    					"type": 1,
    					"url": "https://img.pddpic.com/mms-material-img/2023-10-04/4f33a3c2-dc5e-4579-89f6-dc2364f43c1d.jpeg.a.jpeg",
    					"height": 800
    				},
    				{
    					"enable_share": 1,
    					"width": 800,
    					"goods_id": 525539096007,
    					"id": 1068349815008,
    					"priority": 0,
    					"type": 1,
    					"url": "https://img.pddpic.com/mms-material-img/2023-09-22/68638c95-e603-425f-a983-04c51969d336.jpeg",
    					"height": 800
    				}
    			],
    			"we_chat_only": 0,
    			"group": [
    				{
    					"regular_limit_duration": 0,
    					"regular_limit": 0,
    					"is_open": 1,
    					"end_time": 2082729600,
    					"goods_id": 525539096007,
    					"customer_num": 1,
    					"buy_limit": 999999,
    					"duration": 86400,
    					"start_time": 1451577600,
    					"group_id": 98420071726,
    					"price": 0,
    					"id": 98420071726,
    					"order_limit": 999999
    				},
    				{
    					"regular_limit_duration": 0,
    					"regular_limit": 0,
    					"is_open": 1,
    					"end_time": 2082729600,
    					"goods_id": 525539096007,
    					"customer_num": 2,
    					"buy_limit": 999999,
    					"duration": 86400,
    					"start_time": 1451577600,
    					"group_id": 98420071727,
    					"price": 0,
    					"id": 98420071727,
    					"order_limit": 999999
    				}
    			],
    			"property_show_num": 6,
    			"show_history_group": 1,
    			"goods_name": "艾草香薰袜子男款中筒秋冬款纯色芳香防臭抗菌高筒黑白色运动短袜",
    			"is_app": 0,
    			"hot_goods_from_gin": false,
    			"image_url": "https://img.pddpic.com/gaudit-image/2023-10-17/85baad300bb27e0fb7ba2c0ec2a0a58c.jpeg",
    			"oversea_type": 0,
    			"goods_id": 525539096007,
    			"prompt_rule_id": 505,
    			"warehouse": "",
    			"gpv": 2,
    			"brand_id": 1629,
    			"share_link": "goods2.html?goods_id=525539096007&page_from=39&_oc_trace_mark=199&_oak_share_snapshot_num=487&_oak_share_detail_id=3666189186&_oak_share_time=1702026323",
    			"app_new": 0,
    			"new_share_title": {
    				"suf": "艾草香薰袜子男款中筒秋冬款纯色芳香防臭抗菌高筒黑白色运动短袜 拼多多",
    				"price": "4.87元 ",
    				"not_null": true
    			},
    			"is_sku_onsale": 1,
    			"goods_property_type": 0,
    			"market_price": 3990,
    			"short_name": "艾草香薰袜子男款中筒秋冬款纯色芳香防臭抗菌高筒黑白色运动短袜",
    			"is_mall_dsr": 1,
    			"skip_goods": "0",
    			"status": 1,
    			"thumb_url": "https://img.pddpic.com/gaudit-image/2023-10-17/85baad300bb27e0fb7ba2c0ec2a0a58c.jpeg",
    			"rv": 1,
    			"is_app_flow": 1,
    			"is_personal_fav": 0,
    			"is_hidden": 0,
    			"open_in_festival": 0,
    			"side_sales_tip": "已拼3.9万件",
    			"pre_sale_time": 0,
    			"sold_quantity": 39000,
    			"allowed_region": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32",
    			"cat_id": 23352,
    			"has_promotion": 1,
    			"new_options": [
    				163,
    				166,
    				135,
    				7,
    				200,
    				9,
    				13,
    				178,
    				117,
    				54,
    				122,
    				123,
    				187,
    				60
    			],
    			"show_rec_title": 1,
    			"is_pre_sale": 0,
    			"rv_image": 1,
    			"quantity": 1000,
    			"check_quantity": 1,
    			"sku_type": 0,
    			"is_mall_rec": 1,
    			"prompt_explain": "服饰类商品如出现已洗涤,或吊牌已摘,或显著穿戴痕迹等影响二次销售情形,且无质量问题的,不支持七天无理由退换。",
    			"cost_province_codes": "5,9,19,20,21,28,29",
    			"cat_id_3": 23352,
    			"cat_id_4": 0,
    			"bottom_notice": {
    				"priority": 1,
    				"type": 0,
    				"notice": "",
    				"notice_type": 0
    			},
    			"cat_id_1": 8583,
    			"cat_id_2": 8606,
    			"goods_type": 1,
    			"cost_template_id": 283510917042552
    		},
    		"control": {
    			"require_mall_active_time": 1,
    			"join_group_txt_gray": 1,
    			"in_price_tag_gray": 1,
    			"quantity_check_request_params": {
    				"from_goods_detail": 1
    			}
    		},
    		"service_promise": [
    			{
    				"detail_hidden": 0,
    				"type_color": "#58595B",
    				"dialog_type_color": "#151516",
    				"navigation": 0,
    				"navigation_url": "",
    				"top": 0,
    				"top_type": 0,
    				"id": 1,
    				"dialog_type": "全场包邮",
    				"type": "全场包邮",
    				"desc": "所有商品包邮"
    			},
    			{
    				"detail_hidden": 0,
    				"type_color": "#58595B",
    				"dialog_type_color": "#151516",
    				"navigation": 0,
    				"navigation_url": "",
    				"top": 0,
    				"top_type": 0,
    				"id": 2,
    				"dialog_type": "7天无理由退货",
    				"type": "7天无理由退货",
    				"desc": "满足相应条件(吊牌无缺失、未洗涤)时,消费者可申请“7天无理由退货”,其中定制订单不支持“7天无理由退货”"
    			},
    			{
    				"detail_hidden": 0,
    				"type_color": "#58595B",
    				"dialog_type_color": "#151516",
    				"navigation": 0,
    				"navigation_url": "",
    				"top": 0,
    				"top_type": 0,
    				"id": 15,
    				"dialog_type": "假一赔十",
    				"type": "假一赔十",
    				"desc": "若收到商品是假冒品牌,可获得十倍现金券赔偿"
    			},
    			{
    				"detail_hidden": 0,
    				"type_color": "#58595B",
    				"dialog_type_color": "#151516",
    				"navigation": 0,
    				"navigation_url": "",
    				"top": 0,
    				"top_type": 0,
    				"id": 13,
    				"dialog_type": "48小时发货",
    				"type": "48小时发货",
    				"desc": "订单支付成功后48小时内发货,若未在48小时内发货,消费者将会收到至少3元无门槛代金券"
    			}
    		],
    		"destination_type": 2,
    		"transmission": {
    			"sku_direct_order_extend_info": {
    				"carousel_tag_list": "[{\"type\":24,\"icon\":null,\"descList\":[\"抗菌中筒袜\",\"畅销\"],\"highLightList\":[\"3\"]},{\"type\":1,\"icon\":null,\"descList\":[\"全场包邮\",\"7天无理由退货\",\"假一赔十\",\"48小时发货\"],\"highLightList\":null}]",
    				"detail_id": 3666189186,
    				"service_tag_list": "[\"全场包邮\",\"7天无理由退货\",\"假一赔十\",\"48小时发货\"]"
    			},
    			"promotion_extend_info": []
    		},
    		"bottom_section_list": [
    			{
    				"section_id": "group_buy_section",
    				"control": {
    					"show_type": 1,
    					"limit_type": 0,
    					"cover_options": 0,
    					"close_options": 0
    				}
    			}
    		],
    		"ui": {
    			"photo_bottom_section": {
    				"promotion_txt": "查看优惠",
    				"line_price": "¥39.9",
    				"open_group_txt": "去拼单",
    				"color": "#FFFFFF",
    				"desc_color": "#9C9C9C",
    				"prefix_rich": [
    					{
    						"txt": "¥",
    						"type": 1,
    						"font": 15
    					}
    				],
    				"use_new_desc_labels_rule": false,
    				"price_rich": [
    					{
    						"txt": "4.87",
    						"type": 1,
    						"font": 24
    					}
    				],
    				"suffix": "起"
    			},
    			"carousel_section": {
    				"sell_point_tag_list": [
    					"棉",
    					"抗菌",
    					"情侣适用",
    					"简约风",
    					"纯色",
    					"好评率超99%同款",
    					"4351人好评",
    					"回头客779人",
    					"24小时内900+人拼单",
    					"一周内999+人拼单",
    					"同款热销",
    					"店铺热销",
    					"3.2万人收藏"
    				]
    			},
    			"bubble_section": {
    				"rank": {
    					"rank_desc_v2": [
    						{
    							"txt": "抗菌中筒袜畅销榜 第",
    							"color": "#58595B"
    						},
    						{
    							"txt": "3",
    							"color": "#E02E24"
    						},
    						{
    							"txt": "名",
    							"color": "#58595B"
    						}
    					],
    					"imp_tracks": [
    						{
    							"page_el_sn": "4077407"
    						}
    					],
    					"icon": "https://funimg.pddpic.com/transaction_process/c1d6ab05fffb4726d8dd09df1c884dfc78acc8cd.png"
    				},
    				"type": "rank",
    				"show_bubble": 1
    			},
    			"new_price_section": {
    				"line_price": "¥39.9",
    				"color": "#E02E24",
    				"imp_tracks": [
    					{
    						"extra": {
    							"single_price": "10.9",
    							"line_price": "39.9",
    							"sales_tip": "已拼3.9万件",
    							"type": 0,
    							"pindan_price": "4.87",
    							"desc_labels": "已拼3.9万件"
    						},
    						"page_el_sn": "5049756"
    					}
    				],
    				"use_new_desc_labels_rule": false,
    				"type": "normal",
    				"suffix": "起",
    				"desc_labels": [
    					"已拼3.9万件"
    				],
    				"bg_color": "#FFFFFF",
    				"is_normal": 1,
    				"is_elder": 0,
    				"price": "4.87",
    				"desc_color": "#58595B",
    				"prefix_rich": [
    					{
    						"txt": "¥",
    						"type": 1,
    						"font": 15
    					}
    				],
    				"price_rich": [
    					{
    						"txt": "4.87",
    						"type": 1,
    						"font": 28
    					}
    				]
    			},
    			"delivery_time_v2_section": {
    				"sub_text": "承诺48小时内发货,超时必赔",
    				"dialog": [
    					{
    						"detail_hidden": 0,
    						"dialog_type": "该商品预计14小时内发货",
    						"desc": "订单支付成功后48小时内发货,若未在48小时内发货,消费者将会收到至少3元无门槛代金券"
    					}
    				],
    				"icon": "https://funimg.pddpic.com/tag/deliver/52e2a451-ae6e-4b42-963e-3a8b7a8833be.png.slim.png",
    				"dialog_title": "发货说明",
    				"main_text": "预计14小时内发货",
    				"sub_text_small": "承诺48小时内发货"
    			},
    			"title_section": {
    				"channel_icon": {
    					"width": 138,
    					"id": 10024,
    					"url": "https://funimg.pddpic.com/hot_friends/46620ad7-6c77-4c8e-ae7e-369a7c2f52e2.png",
    					"height": 51
    				},
    				"channel_icon_bef": [
    					{
    						"width": 138,
    						"id": 10024,
    						"url": "https://funimg.pddpic.com/hot_friends/46620ad7-6c77-4c8e-ae7e-369a7c2f52e2.png",
    						"height": 51
    					}
    				]
    			},
    			"live_section": {
    				"float_from_type": 0,
    				"on_live": 0
    			},
    			"bottom_buying_section": {
    				"type": "normal"
    			},
    			"more_pop_navi_button": {
    				"navi_list": [
    					{
    						"text": "常见问题",
    						"icon_id": "59210",
    						"url": "questions.html"
    					},
    					{
    						"text": "意见反馈",
    						"icon_id": "59213",
    						"url": "personal_feedback.html"
    					},
    					{
    						"text": "举报商品",
    						"icon_id": "59212",
    						"url": "complaints_report.html?goods_id=525539096007"
    					}
    				]
    			},
    			"price_explain_section": {
    				"pulldown_title": "点击查看商品价格说明"
    			},
    			"new_bottom_section": {
    				"right_button": {
    					"bg_color": "#E02E24",
    					"click_track": {
    						"extra": {
    							"type": 0
    						},
    						"page_el_sn": "99811"
    					},
    					"text_click_color": "#EDBBB8",
    					"imp_tracks": [
    						{
    							"extra": {
    								"type": 0
    							},
    							"page_el_sn": "99811"
    						}
    					],
    					"text_color": "#FFFFFF",
    					"title": [
    						{
    							"txt": "¥",
    							"type": 1,
    							"font": 19
    						},
    						{
    							"type": 2,
    							"space": 1
    						},
    						{
    							"txt": "4.87",
    							"type": 1,
    							"font": 19
    						}
    					],
    					"click_action": "groupBuy",
    					"bg_click_color": "#C51E14",
    					"desc": "发起拼单",
    					"use_backup": 0
    				},
    				"left_button": {
    					"bg_color": "#F4ABA7",
    					"click_track": {
    						"extra": {
    							"type": 0
    						},
    						"page_el_sn": "99809"
    					},
    					"text_click_color": "#F9E0DF",
    					"imp_tracks": [
    						{
    							"extra": {
    								"type": 0
    							},
    							"page_el_sn": "99809"
    						}
    					],
    					"text_color": "#FFFFFF",
    					"title": [
    						{
    							"txt": "¥",
    							"type": 1,
    							"font": 19
    						},
    						{
    							"type": 2,
    							"space": 1
    						},
    						{
    							"txt": "10.9",
    							"type": 1,
    							"font": 19
    						}
    					],
    					"click_action": "directBuy",
    					"bg_click_color": "#EB9894",
    					"desc": "单独购买"
    				}
    			},
    			"sku_section": {
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"consult_promotion_price": 1,
    				"sku_pane_title_suffix_tag": {
    					"bg_color": "#25B513",
    					"click_notice": "若收到商品是假冒品牌,可获得十倍现金券赔偿",
    					"text_click_color": "#BCDEC8",
    					"border_click_color": "#1F9347",
    					"text": "假一赔十",
    					"text_color": "#FFFFFF",
    					"border_color": "#25B513",
    					"bg_click_color": "#1F9347"
    				},
    				"imp_tracks": [],
    				"view_style": 1,
    				"view_style_v2": 1
    			},
    			"rank_section": {
    				"rank_jump_url": "https://mobile.yangkeduo.com/sjs_cat_rank_list.html?list_id=167071928010701&__list_version=2&_pdd_fs=1&_pdd_tc=ffffff&_pdd_sbs=1&scene_id=goods_detail",
    				"rank_desc_v2": [
    					{
    						"txt": "抗菌中筒袜畅销榜第",
    						"color": "#58595B"
    					},
    					{
    						"txt": "3",
    						"color": "#E02E24"
    					},
    					{
    						"txt": "名",
    						"color": "#58595B"
    					}
    				],
    				"rank_dialog": {
    					"rule_detail": [
    						"根据近7日销量、好评、上升趋势等数据综合进行排名",
    						"每小时更新排名,保证入选商品数据及时更新"
    					],
    					"dialog_title": "入榜详情",
    					"rule": "入榜规则",
    					"title": "「抗菌中筒袜畅销榜」第3名",
    					"desc": "榜单数据更新于2023-12-08 17:00"
    				},
    				"icon": "https://funimg.pddpic.com/transaction_process/c1d6ab05fffb4726d8dd09df1c884dfc78acc8cd.png",
    				"rank": 3,
    				"id": 167071928010701,
    				"rank_cat": 1,
    				"rank_desc": "「抗菌中筒袜畅销榜」第3名"
    			}
    		},
    		"price": {
    			"line_price": 3990,
    			"browser_price_style": 2,
    			"old_min_group_price": 990,
    			"price_suffix": "起",
    			"browser_price_suffix": "起",
    			"old_max_group_price": 2480,
    			"min_on_sale_group_price": 487,
    			"old_min_on_sale_group_price": 990,
    			"max_on_sale_normal_price": 2580,
    			"unselect_normal_save_price": 603,
    			"max_normal_price": 2580,
    			"min_normal_price": 1090,
    			"old_max_on_sale_group_price": 2480,
    			"max_on_sale_group_price": 2477,
    			"min_group_price": 487,
    			"price_style": 2,
    			"max_group_price": 2477,
    			"min_on_sale_normal_price": 1090,
    			"new_price_prefix": "券前"
    		},
    		"review": {
    			"review_data": {
    				"review_merge_outer_num": 0,
    				"review_info_list": [
    					{
    						"order_num_text": "",
    						"review_id": 523584526259074500,
    						"specs": "[{\"spec_key\":\"款式\",\"spec_value\":\"10双白色(7天持久芳香)\"},{\"spec_key\":\"组合\",\"spec_value\":\"艾草香薰中筒(不带纸卡)\"}]",
    						"pxq_friend_tag": false,
    						"name": "苒婍",
    						"anonymous": 0,
    						"comment": "好穿,吸汗,舒服,好看非常推荐[大爱][大爱][大爱]",
    						"time": 1701242157,
    						"avatar": "https://avatar3.pddpic.com/a/Q0tOTWhZVGN4cjZ5Y043Y3NsNWJ4UjAzYUJUOHRIQkNYdz09djA0-1681892728?imageMogr2/thumbnail/100x",
    						"is_my_review": false,
    						"pictures": []
    					},
    					{
    						"order_num_text": "",
    						"review_id": 523554527043139000,
    						"specs": "[{\"spec_key\":\"款式\",\"spec_value\":\"5双白色(7天持久芳香)\"},{\"spec_key\":\"组合\",\"spec_value\":\"艾草香薰中筒(不带纸卡)\"}]",
    						"pxq_friend_tag": false,
    						"name": "今天星期几",
    						"anonymous": 0,
    						"comment": "感觉实物比图片更好看,价格和质量成正比,这次购物非常满意,喜欢的宝宝赶紧下手",
    						"time": 1701227852,
    						"avatar": "https://avatar3.pddpic.com/a/Q0RRSXJhN2R1bFA3RmhOeWVBaGRnVXpYMWhwUHhlcFdlUT09djA0-1662903306?imageMogr2/thumbnail/100x",
    						"is_my_review": false,
    						"pictures": []
    					}
    				],
    				"outer_positive_review_num_text": "",
    				"merchant_qa_num_text": "",
    				"new_merchant_qa_pattern_gray": false,
    				"extra_map": {
    					"extraMapOuterPositiveReviewNum": 0
    				},
    				"review_merge_outer_num_text": "",
    				"review_num_text": "商品评价(5157)",
    				"review_num_str": "5157",
    				"labels": [
    					{
    						"view": {
    							"iconfont": 59421,
    							"back_color": "#DAF8CD",
    							"label_type": 1,
    							"click_back_color": "#C2E6B2",
    							"text_color": "#25B513",
    							"select_text_color": "#FFFFFF",
    							"select_back_color": "#E02E24",
    							"click_text_color": "#2C6813"
    						},
    						"outer_positive_count": 0,
    						"num": 2,
    						"name": "正品",
    						"label_merge_outer_count": 2,
    						"id": "2f2f443f3861b67ed69168d434775962",
    						"positive": 1,
    						"text": "正品(2)"
    					},
    					{
    						"view": {
    							"back_color": "#FDEFEE",
    							"label_type": 0,
    							"click_back_color": "#F7D7D5",
    							"text_color": "#58595B",
    							"select_text_color": "#FFFFFF",
    							"select_back_color": "#E02E24",
    							"click_text_color": "#7C7372"
    						},
    						"outer_positive_count": 0,
    						"num": 101,
    						"name": "质量很好",
    						"label_merge_outer_count": 101,
    						"id": "ef7bc5da221112376d9961c198834f9f",
    						"positive": 1,
    						"text": "质量很好(101)"
    					},
    					{
    						"view": {
    							"back_color": "#FDEFEE",
    							"label_type": 0,
    							"click_back_color": "#F7D7D5",
    							"text_color": "#58595B",
    							"select_text_color": "#FFFFFF",
    							"select_back_color": "#E02E24",
    							"click_text_color": "#7C7372"
    						},
    						"outer_positive_count": 0,
    						"num": 51,
    						"name": "袜子很柔软",
    						"label_merge_outer_count": 51,
    						"id": "00ebb4b42590403c8d3db3dd3ca18b59",
    						"positive": 1,
    						"text": "袜子很柔软(51)"
    					},
    					{
    						"view": {
    							"back_color": "#FDEFEE",
    							"label_type": 0,
    							"click_back_color": "#F7D7D5",
    							"text_color": "#58595B",
    							"select_text_color": "#FFFFFF",
    							"select_back_color": "#E02E24",
    							"click_text_color": "#7C7372"
    						},
    						"outer_positive_count": 0,
    						"num": 31,
    						"name": "价格实惠",
    						"label_merge_outer_count": 31,
    						"id": "6188b708ddf05a72be74a05bb357ff65",
    						"positive": 1,
    						"text": "价格实惠(31)"
    					},
    					{
    						"view": {
    							"back_color": "#FDEFEE",
    							"label_type": 0,
    							"click_back_color": "#F7D7D5",
    							"text_color": "#58595B",
    							"select_text_color": "#FFFFFF",
    							"select_back_color": "#E02E24",
    							"click_text_color": "#7C7372"
    						},
    						"outer_positive_count": 0,
    						"num": 28,
    						"name": "有香味",
    						"label_merge_outer_count": 28,
    						"id": "00373b02551c471a127b76308c174b1e",
    						"positive": 1,
    						"text": "有香味(28)"
    					},
    					{
    						"view": {
    							"back_color": "#FDEFEE",
    							"label_type": 0,
    							"click_back_color": "#F7D7D5",
    							"text_color": "#58595B",
    							"select_text_color": "#FFFFFF",
    							"select_back_color": "#E02E24",
    							"click_text_color": "#7C7372"
    						},
    						"outer_positive_count": 0,
    						"num": 24,
    						"name": "做工精细",
    						"label_merge_outer_count": 24,
    						"id": "a9298a8ff8952a488a11ced2bc4deda0",
    						"positive": 1,
    						"text": "做工精细(24)"
    					},
    					{
    						"view": {
    							"back_color": "#FDEFEE",
    							"label_type": 0,
    							"click_back_color": "#F7D7D5",
    							"text_color": "#58595B",
    							"select_text_color": "#FFFFFF",
    							"select_back_color": "#E02E24",
    							"click_text_color": "#7C7372"
    						},
    						"outer_positive_count": 0,
    						"num": 23,
    						"name": "舒服",
    						"label_merge_outer_count": 23,
    						"id": "6dcd6442b01a2ccaef3c21f9580173dc",
    						"positive": 1,
    						"text": "舒服(23)"
    					},
    					{
    						"view": {
    							"back_color": "#FDEFEE",
    							"label_type": 0,
    							"click_back_color": "#F7D7D5",
    							"text_color": "#58595B",
    							"select_text_color": "#FFFFFF",
    							"select_back_color": "#E02E24",
    							"click_text_color": "#7C7372"
    						},
    						"outer_positive_count": 0,
    						"num": 21,
    						"name": "厚实",
    						"label_merge_outer_count": 21,
    						"id": "9030acc5927f7f3b20b387ed00b2522d",
    						"positive": 1,
    						"text": "厚实(21)"
    					}
    				],
    				"new_outer_review_gray": true,
    				"mall_review_entrance_info": {
    					"label_list": [
    						{
    							"cluster_id": -1,
    							"view": {
    								"iconfont": 59147,
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 16000,
    							"name": "回头客",
    							"id": "462a84ed278b88720849dfa87b1a7b6b",
    							"positive": 1,
    							"text": "回头客(1.6万)"
    						},
    						{
    							"cluster_id": 0,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 9420,
    							"name": "商品质量好",
    							"id": "20de3ffcc92e5a34bca18173c59c7336",
    							"positive": 1,
    							"text": "商品质量好(9420)"
    						},
    						{
    							"cluster_id": 186,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 8170,
    							"name": "袜子很好",
    							"id": "391a1bc3189e7988a793f3f1dc6c121c",
    							"positive": 1,
    							"text": "袜子很好(8170)"
    						},
    						{
    							"cluster_id": 14,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 4505,
    							"name": "穿上很舒服",
    							"id": "cdbdfe418216b8de622408ce174aaf8b",
    							"positive": 1,
    							"text": "穿上很舒服(4505)"
    						},
    						{
    							"cluster_id": 6,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 3118,
    							"name": "好看",
    							"id": "8c32c77d9055339bf560d195b6bedcac",
    							"positive": 1,
    							"text": "好看(3118)"
    						},
    						{
    							"cluster_id": 16,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 1776,
    							"name": "面料舒服的",
    							"id": "f9bef3ea2b2147ede1f55eed6c8b25b9",
    							"positive": 1,
    							"text": "面料舒服的(1776)"
    						},
    						{
    							"cluster_id": 48,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 1322,
    							"name": "摸着很舒服",
    							"id": "dd00f3438a4f931834d501023589603f",
    							"positive": 1,
    							"text": "摸着很舒服(1322)"
    						},
    						{
    							"cluster_id": 4,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 914,
    							"name": "价格很实惠",
    							"id": "c056d33ed628cbb968c38fc16ae94081",
    							"positive": 1,
    							"text": "价格很实惠(914)"
    						},
    						{
    							"cluster_id": 34,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 697,
    							"name": "袜子大小合适",
    							"id": "fec0c9f5e8241474b3ac883a8b6f2f1e",
    							"positive": 1,
    							"text": "袜子大小合适(697)"
    						},
    						{
    							"cluster_id": 30,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 629,
    							"name": "颜色很好看",
    							"id": "2aee7cf619b891e3784657105a982f2e",
    							"positive": 1,
    							"text": "颜色很好看(629)"
    						},
    						{
    							"cluster_id": 182,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 251,
    							"name": "是棉的",
    							"id": "72bb8589c9c8266cea934b95d83367e1",
    							"positive": 1,
    							"text": "是棉的(251)"
    						},
    						{
    							"cluster_id": 214,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 206,
    							"name": "棉料透气性好",
    							"id": "0f641241d40926591a81907e9e586577",
    							"positive": 1,
    							"text": "棉料透气性好(206)"
    						},
    						{
    							"cluster_id": 18,
    							"view": {
    								"back_color": "#FDEFEE",
    								"label_type": 0,
    								"click_back_color": "#F7D7D5",
    								"text_color": "#58595B",
    								"select_text_color": "#FFFFFF",
    								"select_back_color": "#E02E24",
    								"click_text_color": "#7C7372"
    							},
    							"num": 186,
    							"name": "吸汗效果好",
    							"id": "37f277eac7822116b187afb1bda39441",
    							"positive": 1,
    							"text": "吸汗效果好(186)"
    						}
    					],
    					"title_text": "该商品所属店铺评价",
    					"exps": {
    						"mall_functional_label": {
    							"bucket": 0,
    							"timestamp": 1702026323619
    						}
    					}
    				},
    				"merge_review_with_outer_review": 1,
    				"exps": {
    					"label_info": {
    						"strategy_name": "N",
    						"timestamp": 1702026323635
    					},
    					"goods_detail_perfect_pic": {
    						"strategy_name": "N",
    						"timestamp": 1702026323621
    					},
    					"goods_detail": {
    						"strategy_name": "N",
    						"timestamp": 1702026323621
    					}
    				},
    				"merchant_qa_title_text": "商品答疑",
    				"merchant_qa_answer_show": false,
    				"enable_review_new_style": false,
    				"review_num": 5157
    			}
    		},
    		"section_list": [
    			{
    				"section_id": "price_section"
    			},
    			{
    				"section_id": "info_section"
    			},
    			{
    				"section_id": "space_section"
    			},
    			{
    				"section_id": "group_section"
    			},
    			{
    				"section_id": "space_section"
    			},
    			{
    				"section_id": "comment_section"
    			},
    			{
    				"section_id": "space_section"
    			},
    			{
    				"section_id": "mall_comment_section"
    			},
    			{
    				"section_id": "space_section"
    			},
    			{
    				"section_id": "mall_info_section"
    			},
    			{
    				"section_id": "mall_goods_rec_section"
    			},
    			{
    				"section_id": "space_section"
    			},
    			{
    				"section_id": "goods_rec_list_section"
    			},
    			{
    				"section_id": "space_section"
    			},
    			{
    				"section_id": "goods_property_section"
    			},
    			{
    				"section_id": "video_section"
    			},
    			{
    				"section_id": "illustration_section"
    			},
    			{
    				"section_id": "decoration_section"
    			},
    			{
    				"data": {
    					"pulldown_title": "点击查看商品价格说明",
    					"content": [
    						{
    							"txt": "单独购买价:",
    							"color": "#151516"
    						},
    						{
    							"txt": "是您单独购买商品的价格\n",
    							"color": "#58595B"
    						},
    						{
    							"txt": "发起拼单价:",
    							"color": "#151516"
    						},
    						{
    							"txt": "是您拼单购买商品的价格\n",
    							"color": "#58595B"
    						},
    						{
    							"txt": "划线价:",
    							"color": "#151516"
    						},
    						{
    							"txt": "是指商品展示的参考价,是商品的专柜价、吊牌价、零售价、厂商指导价或该商品曾经展示过的销售价等,并非原价;由于地区、时间的差异性和市场行情波动,专柜价、零售价等可能会与您购物时展示的不一致,该价格仅供您参考\n",
    							"color": "#58595B"
    						},
    						{
    							"txt": "特别提示:",
    							"color": "#151516"
    						},
    						{
    							"txt": "实际的成交价格可能因您使用优惠券等发生变化,最终以订单结算页的价格为准。若商家单独对价格进行说明的,以商家的表述为准。如您发现活动商品售价或促销信息存在异常,建议购买前先联系商家进行咨询",
    							"color": "#58595B"
    						}
    					]
    				},
    				"section_id": "usage_price_desc_section"
    			}
    		],
    		"sku": [
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 203,
    				"hot_sale": 1,
    				"group_price": 2377,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"spec": "21347506334,21347594368",
    				"specs": [
    					{
    						"spec_value_id": 21347506334,
    						"spec_key": "款式",
    						"spec_value": "10双白色(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347594368,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰中筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"price": 0,
    				"default_quantity": 100,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    				"quantity": 1000,
    				"old_group_price": 2380,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519105,
    				"init_quantity": 0,
    				"preview_priority": 0,
    				"start_time": 0,
    				"normal_price": 2580,
    				"market_price": 0
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 2480,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519106,
    				"group_price": 2477,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347506334,21347597200",
    				"preview_priority": 10,
    				"specs": [
    					{
    						"spec_value_id": 21347506334,
    						"spec_key": "款式",
    						"spec_value": "10双白色(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347597200,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰高筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 2580,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 203,
    				"quantity": 1000,
    				"old_group_price": 2380,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519107,
    				"group_price": 2377,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347513218,21347594368",
    				"preview_priority": 1,
    				"specs": [
    					{
    						"spec_value_id": 21347513218,
    						"spec_key": "款式",
    						"spec_value": "10双黑色(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347594368,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰中筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 2580,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 2480,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519108,
    				"group_price": 2477,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347513218,21347597200",
    				"preview_priority": 11,
    				"specs": [
    					{
    						"spec_value_id": 21347513218,
    						"spec_key": "款式",
    						"spec_value": "10双黑色(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347597200,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰高筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 2580,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 203,
    				"quantity": 1000,
    				"old_group_price": 2380,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519109,
    				"group_price": 2377,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347504708,21347594368",
    				"preview_priority": 2,
    				"specs": [
    					{
    						"spec_value_id": 21347504708,
    						"spec_key": "款式",
    						"spec_value": "5黑5白(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347594368,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰中筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 2580,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"hot_sale": 1,
    				"group_price": 2477,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"spec": "21347504708,21347597200",
    				"specs": [
    					{
    						"spec_value_id": 21347504708,
    						"spec_key": "款式",
    						"spec_value": "5黑5白(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347597200,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰高筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"price": 0,
    				"default_quantity": 100,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    				"quantity": 1000,
    				"old_group_price": 2480,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519110,
    				"init_quantity": 0,
    				"preview_priority": 12,
    				"start_time": 0,
    				"normal_price": 2580,
    				"market_price": 0
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1580,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519111,
    				"group_price": 1577,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347505160,21347594368",
    				"preview_priority": 3,
    				"specs": [
    					{
    						"spec_value_id": 21347505160,
    						"spec_key": "款式",
    						"spec_value": "5双黑色(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347594368,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰中筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1680,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1680,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519112,
    				"group_price": 1677,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347505160,21347597200",
    				"preview_priority": 13,
    				"specs": [
    					{
    						"spec_value_id": 21347505160,
    						"spec_key": "款式",
    						"spec_value": "5双黑色(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347597200,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰高筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1780,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1580,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519113,
    				"group_price": 1577,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347499381,21347594368",
    				"preview_priority": 4,
    				"specs": [
    					{
    						"spec_value_id": 21347499381,
    						"spec_key": "款式",
    						"spec_value": "5双白色(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347594368,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰中筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1680,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1680,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519114,
    				"group_price": 1677,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347499381,21347597200",
    				"preview_priority": 14,
    				"specs": [
    					{
    						"spec_value_id": 21347499381,
    						"spec_key": "款式",
    						"spec_value": "5双白色(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347597200,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰高筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1780,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1580,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519115,
    				"group_price": 1577,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347490895,21347594368",
    				"preview_priority": 5,
    				"specs": [
    					{
    						"spec_value_id": 21347490895,
    						"spec_key": "款式",
    						"spec_value": "4白1黑(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347594368,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰中筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1680,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1680,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519116,
    				"group_price": 1677,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347490895,21347597200",
    				"preview_priority": 15,
    				"specs": [
    					{
    						"spec_value_id": 21347490895,
    						"spec_key": "款式",
    						"spec_value": "4白1黑(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347597200,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰高筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1780,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1580,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519117,
    				"group_price": 1577,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347491878,21347594368",
    				"preview_priority": 6,
    				"specs": [
    					{
    						"spec_value_id": 21347491878,
    						"spec_key": "款式",
    						"spec_value": "2黑3白(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347594368,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰中筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1680,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1680,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519118,
    				"group_price": 1677,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347491878,21347597200",
    				"preview_priority": 16,
    				"specs": [
    					{
    						"spec_value_id": 21347491878,
    						"spec_key": "款式",
    						"spec_value": "2黑3白(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347597200,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰高筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1780,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1580,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519119,
    				"group_price": 1577,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347513037,21347594368",
    				"preview_priority": 7,
    				"specs": [
    					{
    						"spec_value_id": 21347513037,
    						"spec_key": "款式",
    						"spec_value": "3黑2白(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347594368,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰中筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1680,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1680,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519120,
    				"group_price": 1677,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347513037,21347597200",
    				"preview_priority": 17,
    				"specs": [
    					{
    						"spec_value_id": 21347513037,
    						"spec_key": "款式",
    						"spec_value": "3黑2白(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347597200,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰高筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1780,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1580,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519121,
    				"group_price": 1577,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347491933,21347594368",
    				"preview_priority": 8,
    				"specs": [
    					{
    						"spec_value_id": 21347491933,
    						"spec_key": "款式",
    						"spec_value": "4黑1白(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347594368,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰中筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1680,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/mms-material-img/2023-09-14/8660870d-d4a5-4263-9823-b36032d454bd.jpeg.a.jpeg",
    				"normal_save_price": 103,
    				"quantity": 1000,
    				"old_group_price": 1680,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1460926519122,
    				"group_price": 1677,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "21347491933,21347597200",
    				"preview_priority": 18,
    				"specs": [
    					{
    						"spec_value_id": 21347491933,
    						"spec_key": "款式",
    						"spec_value": "4黑1白(7天持久芳香)",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347597200,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰高筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1780,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/garner-api-new/9737be207570ce9e9ff4aea5fea7789a.jpeg",
    				"normal_save_price": 603,
    				"quantity": 1000,
    				"old_group_price": 990,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1511450320580,
    				"group_price": 487,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "17405601460,21347594368",
    				"preview_priority": 9,
    				"specs": [
    					{
    						"spec_value_id": 17405601460,
    						"spec_key": "款式",
    						"spec_value": "1双黑色【体验试穿】",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347594368,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰中筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1090,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"skuPreSaleTime\":0}"
    			},
    			{
    				"thumb_url": "https://img.pddpic.com/garner-api-new/9737be207570ce9e9ff4aea5fea7789a.jpeg",
    				"normal_save_price": 603,
    				"quantity": 1000,
    				"old_group_price": 990,
    				"end_time": 0,
    				"goods_id": 525539096007,
    				"weight": 0,
    				"sku_id": 1511450320581,
    				"group_price": 487,
    				"static_limit_quantity": 999999,
    				"sold_quantity": 0,
    				"is_onsale": 1,
    				"init_quantity": 0,
    				"spec": "17405601460,21347597200",
    				"preview_priority": 19,
    				"specs": [
    					{
    						"spec_value_id": 17405601460,
    						"spec_key": "款式",
    						"spec_value": "1双黑色【体验试穿】",
    						"spec_key_id": 1218
    					},
    					{
    						"spec_value_id": 21347597200,
    						"spec_key": "组合",
    						"spec_value": "艾草香薰高筒(不带纸卡)",
    						"spec_key_id": 2774
    					}
    				],
    				"yellow_label_list": [
    					{
    						"label_text": "2件9.9折",
    						"label_type": "single_goods_percentage_event"
    					},
    					{
    						"label_text": "满50减3",
    						"label_type": "mall_area_event"
    					}
    				],
    				"start_time": 0,
    				"normal_price": 1090,
    				"price": 0,
    				"default_quantity": 100,
    				"market_price": 0,
    				"limit_quantity": 999999,
    				"attribute": "{\"skuPreSaleTime\":0}"
    			}
    		],
    		"secondary_api": {
    			"method": "POST",
    			"params": {
    				"page_from": "39",
    				"func_points": [
    					"mall_active_time"
    				],
    				"mall_id": 240723320,
    				"goods_id": "525539096007"
    			},
    			"url": "/api/oak/integration/require_extra"
    		},
    		"promotion": {
    			"promotion_events": {
    				"mall_promotion_layer": {
    					"template": "",
    					"jsbundle": "",
    					"data": {
    						"mall_promo_list": [
    							{
    								"rich_rules_desc": [
    									{
    										"txt": "全店满50元减3元"
    									}
    								],
    								"button_desc": "去看看",
    								"min_amount": 5000,
    								"promotion_detail_type": 2,
    								"tag_desc": "满减优惠",
    								"discount": 300,
    								"source_type": 659,
    								"discount_type": 1,
    								"click_operation_type": 1,
    								"transmission_data": [],
    								"mall_id": 240723320,
    								"link_url": "mall_page.html?mall_id=240723320&mall_tab_key_list=%5B%22mall_goods%22%5D&refer_page_param=%7B%22goodsIds%22%3A%5B525539096007%5D%7D",
    								"sn": "Z0659MM-625155924725712248",
    								"button_clickable": true,
    								"rule_sub_desc": "全店商品可用"
    							}
    						],
    						"extension": [],
    						"mall_promo_title": "店铺优惠",
    						"environment_context": {
    							"page_from": "39",
    							"new_version": true,
    							"function_tag": false
    						},
    						"title": "优惠详情",
    						"simple_prom_display_list": [
    							{
    								"activity_tag": "多件优惠",
    								"activity_copy_writing": "该商品满2件享9.9折",
    								"source_type": 971
    							}
    						],
    						"is_unavailable": false
    					}
    				},
    				"bottom_yellow_bar_bolist": []
    			},
    			"events": {
    				"mall_promotion_new_cell": {
    					"cell_detail_list": [
    						{
    							"copy_writing": "2件9.9折",
    							"copy_writing_color": "#E02E24",
    							"background_color": "#FFFFFF",
    							"cell_tag_type": 26,
    							"frame_color": "#E02E24"
    						},
    						{
    							"copy_writing": "满50减3",
    							"copy_writing_color": "#E02E24",
    							"background_color": "#FFFFFF",
    							"cell_tag_type": 4,
    							"frame_color": "#E02E24"
    						}
    					]
    				},
    				"specific_cross_reduce": {
    					"is_hit_specific_cross_reduce": false
    				},
    				"promotion_yellow_label_list": {
    					"goods_label_list": [
    						{
    							"display_priority": 24,
    							"label_type": "single_goods_percentage_event",
    							"label_copy_writing": "2件9.9折"
    						},
    						{
    							"display_priority": 31,
    							"label_type": "mall_area_event",
    							"label_copy_writing": "满50减3"
    						}
    					],
    					"sku_label_list_map": {
    						"1460926519120": [
    							{
    								"unique_id": 1460926519120,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519120,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519121": [
    							{
    								"unique_id": 1460926519121,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519121,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519110": [
    							{
    								"unique_id": 1460926519110,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519110,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519113": [
    							{
    								"unique_id": 1460926519113,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519113,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519114": [
    							{
    								"unique_id": 1460926519114,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519114,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519122": [
    							{
    								"unique_id": 1460926519122,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519122,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519111": [
    							{
    								"unique_id": 1460926519111,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519111,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519112": [
    							{
    								"unique_id": 1460926519112,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519112,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519106": [
    							{
    								"unique_id": 1460926519106,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519106,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519117": [
    							{
    								"unique_id": 1460926519117,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519117,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519107": [
    							{
    								"unique_id": 1460926519107,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519107,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519118": [
    							{
    								"unique_id": 1460926519118,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519118,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519115": [
    							{
    								"unique_id": 1460926519115,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519115,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519105": [
    							{
    								"unique_id": 1460926519105,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519105,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519116": [
    							{
    								"unique_id": 1460926519116,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519116,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519108": [
    							{
    								"unique_id": 1460926519108,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519108,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519119": [
    							{
    								"unique_id": 1460926519119,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519119,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1460926519109": [
    							{
    								"unique_id": 1460926519109,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1460926519109,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1511450320581": [
    							{
    								"unique_id": 1511450320581,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1511450320581,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						],
    						"1511450320580": [
    							{
    								"unique_id": 1511450320580,
    								"display_priority": 24,
    								"label_type": "single_goods_percentage_event",
    								"label_copy_writing": "2件9.9折"
    							},
    							{
    								"unique_id": 1511450320580,
    								"display_priority": 31,
    								"label_type": "mall_area_event",
    								"label_copy_writing": "满50减3"
    							}
    						]
    					}
    				},
    				"cards_resource_info": [],
    				"promotion_yellow_bar": {
    					"is_hit_clothing_cross_reduce": false
    				},
    				"promotion_price_info": {
    					"copy_writing": {
    						"copy_writing_without_price_start_from": "",
    						"sku_copy_writings": [],
    						"activity_copy_writing_display_items": [],
    						"activity_copy_writing": "",
    						"copy_writing_without_price_start_from_display_items": []
    					},
    					"contains_treasure_coupon": false,
    					"best_promo_hint_display_items": [
    						{
    							"txt": "店铺满2件9.9折",
    							"color": "#151516",
    							"type": 1,
    							"font": 14
    						},
    						{
    							"txt": ",预估",
    							"color": "#151516",
    							"type": 1,
    							"font": 14
    						},
    						{
    							"txt": "¥4.83起/件",
    							"color": "#E02E24",
    							"type": 1,
    							"font": 14
    						}
    					],
    					"promotion_trace": "1c1ec2c1-ea2b-45f8-b3b3-6d6a54c79ec8",
    					"promo_display_items": [],
    					"contains_mass_subsidy_chanel_coupon": false,
    					"promo_display_items_with_suffix": [],
    					"fb_send_amount": 0
    				}
    			}
    		},
    		"neighbor_group": {
    			"neighbor_data": {
    				"simple_combine_group": {
    					"is_has_join_group": true,
    					"member_info_list": [
    						{
    							"avatar": "https://avatar3.pddpic.com/a/Q0o1YWQ0Z1gwM1NRV2xzb3J3Z2JzVGVKY3ZmS3E5YTkydz09djA0-1677336123?imageMogr2/thumbnail/100x"
    						},
    						{
    							"avatar": "https://avatar3.pddpic.com/a/Q0ErcjRtNVNtamkzNGJ0ZlZiN2V6ZUZOcWFnUGFYME5ZUT09djA0-1702024688?imageMogr2/thumbnail/100x"
    						},
    						{
    							"avatar": "https://avatar3.pddpic.com/a/Q0szVE1HbDhiOXFCSEsrbTZBa0VsU2xSRzNuQlVHYnJSQT09djA0-1694334074?imageMogr2/thumbnail/100x"
    						}
    					],
    					"prefix_text": "参与",
    					"click_track": {
    						"page_el_sn": "7858429"
    					},
    					"group_order_id": "2428351598027773969",
    					"suffix_text": "的拼单,立即拼成",
    					"group_type": 0,
    					"track_list": [
    						{
    							"page_el_sn": "7858429"
    						}
    					]
    				},
    				"combine_group": {
    					"combine_group_list_type": 0,
    					"combine_group_popup_title": "可参与的拼单",
    					"combine_group_popup_footer": "",
    					"extra_avatar_list": [
    						"https://avatar3.pddpic.com/a/Q0ErcjRtNVNtamkzNGJ0ZlZiN2V6ZUZOcWFnUGFYME5ZUT09djA0-1702024688?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0o1YWQ0Z1gwM1NRV2xzb3J3Z2JzVGVKY3ZmS3E5YTkydz09djA0-1677336123?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0szVE1HbDhiOXFCSEsrbTZBa0VsU2xSRzNuQlVHYnJSQT09djA0-1694334074?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0d1dzJwNTNFQVY1TmJ1MTJDQ3IyNjdUak1XOGZNWnF0Zz09djA0-1696167017?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0lFSFpsTy9mamNNL3lpQjhLWjdKczhoZGozd0RWZ3RPZz09djA0-1700030601?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q1ArSXB3L3JpcHBZTGxTUlMwbTUyTmJ6clF5c2R4RUVPdz09djA0-1660985075?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0V2aW16SHdyemlJOE9VbHM2QmZUSnN1TG45alNqRzVqZz09djA0-1698931496?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0xWb1pQZTlZUFNSaDJVRGRlQ0pBVEM4cDNXNEhReEFRZz09djA0-1644650674?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0lPRTQ5Tkt2N0NBU3FGTjdraWRQbm90c2RqNDlQUWs1UT09djA0-1699773957?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0tKYmFRQ1F4TG45WThxaXpQb2NzL0h1a2tUa3FpbTVyQT09djA0-1684589880?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q1BXTG01TFlYZzdtTzVKZGwxcDBvNG9IbmRqdDNpNGlkZz09djA0-1673316599?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0gyR0djSHp1SGJUY2RMNk5wMmFsem5heW4zZnhvZ0xYdz09djA0-1660977119?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0wvUGZ2Y1ZuOGtDcHI0cmFGMFk2em1ZcHlYNjZyRUJJdz09djA0-1688715949?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0xBVzdaOC9CZU5XTnFrNmRhSlRhWldhNmJrYTN2Ri9NZz09djA0-1700924831?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0loSUE0RTRLMFJTd0hKMXlaSk9nOStXVWRrQ3dvVVBsQT09djA0-1683044813?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0xhNlpCK2NpdXdSaUNhU2xqNTRsWnFrM0M3b1NvZFdXdz09djA0-1692367056?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0N2cU8wdHY2dHdiUmFSTHp6ZjZhaWVqM2Zlc20rZ203dz09djA0-1692028063?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0FTTlJ3YzhIQWxDekRVNlpsdVBFUXVRdjBpRThOTTREZz09djA0-1620540963?imageMogr2/thumbnail/100x"
    					],
    					"recommend_group": {
    						"member_info_list": [
    							{
    								"nickname": "逸沉不染",
    								"avatar": "https://avatar3.pddpic.com/a/Q0o1YWQ0Z1gwM1NRV2xzb3J3Z2JzVGVKY3ZmS3E5YTkydz09djA0-1677336123?imageMogr2/thumbnail/100x",
    								"is_friend": false
    							}
    						],
    						"button_desc": "去拼单",
    						"gender": 2,
    						"click_track": {
    							"extra": {
    								"type": 0
    							},
    							"page_el_sn": "4264980"
    						},
    						"group_order_id": "2428351598027773969",
    						"tag_list": [],
    						"is_shared": false,
    						"expire_time": "1702112456",
    						"group_type": 0,
    						"track_list": [
    							{
    								"extra": {
    									"button_dsc": "去拼单",
    									"group_order_id": "2428351598027773969",
    									"type": 0
    								},
    								"page_el_sn": "4264980"
    							}
    						],
    						"is_self_group": false
    					},
    					"combine_group_list": [
    						{
    							"member_info_list": [
    								{
    									"nickname": "逸沉不染",
    									"avatar": "https://avatar3.pddpic.com/a/Q0o1YWQ0Z1gwM1NRV2xzb3J3Z2JzVGVKY3ZmS3E5YTkydz09djA0-1677336123?imageMogr2/thumbnail/100x",
    									"is_friend": false
    								}
    							],
    							"button_desc": "去拼单",
    							"gender": 2,
    							"click_track": {
    								"extra": {
    									"type": 0
    								},
    								"page_el_sn": "4264980"
    							},
    							"group_order_id": "2428351598027773969",
    							"tag_list": [],
    							"is_shared": false,
    							"expire_time": "1702112456",
    							"group_type": 0,
    							"track_list": [
    								{
    									"extra": {
    										"button_dsc": "去拼单",
    										"group_order_id": "2428351598027773969",
    										"type": 0
    									},
    									"page_el_sn": "4264980"
    								}
    							],
    							"is_self_group": false
    						},
    						{
    							"member_info_list": [
    								{
    									"nickname": "周知",
    									"avatar": "https://avatar3.pddpic.com/a/Q0ErcjRtNVNtamkzNGJ0ZlZiN2V6ZUZOcWFnUGFYME5ZUT09djA0-1702024688?imageMogr2/thumbnail/100x",
    									"is_friend": false
    								}
    							],
    							"button_desc": "去拼单",
    							"gender": 0,
    							"click_track": {
    								"extra": {
    									"type": 0
    								},
    								"page_el_sn": "4264980"
    							},
    							"group_order_id": "2428053923050402250",
    							"tag_list": [],
    							"is_shared": false,
    							"expire_time": "1702112587",
    							"group_type": 0,
    							"track_list": [
    								{
    									"extra": {
    										"button_dsc": "去拼单",
    										"group_order_id": "2428053923050402250",
    										"type": 0
    									},
    									"page_el_sn": "4264980"
    								}
    							],
    							"is_self_group": false
    						},
    						{
    							"member_info_list": [
    								{
    									"nickname": "想喝牛奶",
    									"avatar": "https://avatar3.pddpic.com/a/Q0szVE1HbDhiOXFCSEsrbTZBa0VsU2xSRzNuQlVHYnJSQT09djA0-1694334074?imageMogr2/thumbnail/100x",
    									"is_friend": false
    								}
    							],
    							"button_desc": "去拼单",
    							"gender": 1,
    							"click_track": {
    								"extra": {
    									"type": 0
    								},
    								"page_el_sn": "4264980"
    							},
    							"group_order_id": "2428517204898690730",
    							"tag_list": [],
    							"is_shared": false,
    							"expire_time": "1702112466",
    							"group_type": 0,
    							"track_list": [
    								{
    									"extra": {
    										"button_dsc": "去拼单",
    										"group_order_id": "2428517204898690730",
    										"type": 0
    									},
    									"page_el_sn": "4264980"
    								}
    							],
    							"is_self_group": false
    						}
    					],
    					"combine_group_button_desc": "去拼单",
    					"pulldown_group": {
    						"group_info": {
    							"member_info_list": [
    								{
    									"nickname": "逸沉不染",
    									"avatar": "https://avatar3.pddpic.com/a/Q0o1YWQ0Z1gwM1NRV2xzb3J3Z2JzVGVKY3ZmS3E5YTkydz09djA0-1677336123?imageMogr2/thumbnail/100x",
    									"is_friend": false
    								}
    							],
    							"button_desc": "去拼单",
    							"gender": 2,
    							"group_order_id": "2428351598027773969",
    							"is_shared": false,
    							"expire_time": "1702112456",
    							"group_type": 0,
    							"is_self_group": false
    						},
    						"group_title_info": {
    							"need_join_countdown": true,
    							"group_title_desc": "还差1人,参与可立即拼成"
    						}
    					},
    					"avatar_list": [
    						"https://avatar3.pddpic.com/a/Q0o1YWQ0Z1gwM1NRV2xzb3J3Z2JzVGVKY3ZmS3E5YTkydz09djA0-1677336123?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0ErcjRtNVNtamkzNGJ0ZlZiN2V6ZUZOcWFnUGFYME5ZUT09djA0-1702024688?imageMogr2/thumbnail/100x",
    						"https://avatar3.pddpic.com/a/Q0szVE1HbDhiOXFCSEsrbTZBa0VsU2xSRzNuQlVHYnJSQT09djA0-1694334074?imageMogr2/thumbnail/100x"
    					],
    					"group_total": 3,
    					"combine_group_desc": "3人在拼,参与可立即拼成"
    				}
    			},
    			"neighbor_status": 1
    		},
    		"app_ver": "2.0.0-6.0",
    		"_ddf": "jf"
    	},
    	"error": "",
    	"reason": "",
    	"error_code": "0000",
    	"cache": 0,
    	"api_info": "today:84 max:10000 all[1346=84+85+1177];expires:2030-10-30",
    	"execution_time": "1.264",
    	"server_time": "Beijing/2023-12-08 17:05:23",
    	"client_ip": "106.6.38.4",
    	"call_args": [],
    	"api_type": "pinduoduo",
    	"translate_language": "zh-CN",
    	"translate_engine": "baidu",
    	"server_memory": "3.93MB",
    	"request_id": "1.6572dc52aa739",
    	"last_id": "2346511041"
    }
    异常示例
    {
    		"error": "item-not-found",
    		"reason": "商品没找到",
    		"error_code": "2000",
    		"success": 0,
    		"cache": 0,
    		"api_info": "today:0 max:10000",
    		"execution_time": 0.081,
    		"server_time": "Beijing/2023-11-30 11:55:59",
    		"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(微信同号)