凡邦京东获得JD商品详情原数据 API 返回值说明

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

onebound.jd.item_get_app

公共参数

请求地址: https://api-gw.fan-b.com/jd/item_get_app

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

请求参数:num_iid=10335871600&domain_type=jd

参数说明:item_id:商品ID
domain_type:站点名称(京东工业:gongye;京东医药:yiyao;全球购,国际:hk; 京东自营:jd)

响应参数

Version: Date:

名称 类型 必须 示例值 描述
item
Mix 1 获得京东商品原数据
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.fan-b.com/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd";
$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.fan-b.com/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.fan-b.com/";
$obapi->api_urls = array("http://api-gw.fan-b.com/","http://api-1.fan-b.com/");//备用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" =>"jd",
	                "api_name" =>"item_get_app",
	                "api_params"=>array (
  'num_iid' => '10335871600',
  'domain_type' => 'jd',
)
                )
            );
 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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd";
		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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd";
	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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"
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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd", 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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"num_iid":"10335871600","domain_type":"jd"})// 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.fan-b.com", // 
    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":"jd",
     "api_name" : "item_get_app",
     "api_params": {"num_iid":"10335871600","domain_type":"jd"}//num_iid=10335871600&domain_type=jd,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd")
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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd")!
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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"];

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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd";
  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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd");
         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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd", (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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd")
    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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

响应示例
{
    "item": {
      "item": {
        "code": 0,
        "floors": [
          {
            "bId": "bpconfigCustom_flo_1330",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "top_circle_separator"
            },
            "data": {
              "videoControl": {
                "autoPlay": false,
                "masterVideo": {
                  "duration": 25,
                  "imageUrl": "https://jvod.300hu.com/img/2021/63665054/1/img2.jpg",
                  "playUrl": "https://jvod.300hu.com/vod/product/e00714f5-b497-457c-989c-77c3877fe409/8e548babc688414b84b78663491a0a4a.mp4?source=2&h265=h265/18799/768a2b5af1384bffb157447fd21f4868.mp4",
                  "videoDuration": "0025\"",
                  "videoId": "544005125",
                  "videoShare": {
                    "des": "我发现了一个精彩的视频,快来看看吧",
                    "microBlog": "我发现了一个精彩的视频,快来看看吧https://h5.m.jd.com/dev/3UmozpxSyHxMaXRXndHbUhwC4iuN/index.html?skuId=10335871600",
                    "title": "这个小视频不错哦~",
                    "url": "https://h5.m.jd.com/dev/3UmozpxSyHxMaXRXndHbUhwC4iuN/index.html?skuId=10335871600"
                  }
                },
                "optimize": true
              },
              "wareImage": [
                {
                  "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/229337/37/10684/149167/65b9de38F890290bc/0e3cac8acb2252f7.jpg!q70.jpg",
                  "share": "http://m.360buyimg.com/mobilecms/s120x120_jfs/t1/229337/37/10684/149167/65b9de38F890290bc/0e3cac8acb2252f7.jpg!q70.jpg",
                  "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/229337/37/10684/149167/65b9de38F890290bc/0e3cac8acb2252f7.jpg!q70.jpg"
                },
                {
                  "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/246624/40/4294/144261/65b9de38F8605e393/9e31c475221389f1.jpg!q70.jpg",
                  "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/246624/40/4294/144261/65b9de38F8605e393/9e31c475221389f1.jpg!q70.jpg"
                },
                {
                  "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/244484/18/4325/152387/65b9de59Fe0dec27c/a4ad9b81edfd5d89.jpg!q70.jpg",
                  "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/244484/18/4325/152387/65b9de59Fe0dec27c/a4ad9b81edfd5d89.jpg!q70.jpg"
                },
                {
                  "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/101532/14/47402/96155/65b9de59Fea23dcaf/4222f6dab7d3df10.jpg!q70.jpg",
                  "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/101532/14/47402/96155/65b9de59Fea23dcaf/4222f6dab7d3df10.jpg!q70.jpg"
                },
                {
                  "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/113440/24/41437/83913/65b9de58F43b75c9b/ecb51171ec300ffb.jpg!q70.jpg",
                  "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/113440/24/41437/83913/65b9de58F43b75c9b/ecb51171ec300ffb.jpg!q70.jpg"
                },
                {
                  "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/88570/36/38348/109382/65b9de58F97688cdf/dbd2d7360c49bd22.jpg!q70.jpg",
                  "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/88570/36/38348/109382/65b9de58F97688cdf/dbd2d7360c49bd22.jpg!q70.jpg"
                },
                {
                  "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/112004/23/38495/120350/65b9de58Fc0190eb8/33c9537c1cc86f7a.jpg!q70.jpg",
                  "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/112004/23/38495/120350/65b9de58Fc0190eb8/33c9537c1cc86f7a.jpg!q70.jpg"
                },
                {
                  "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/244908/29/4237/69649/65b9de57Ff52bb63e/6c3d99884b3842b2.jpg!q70.jpg",
                  "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/244908/29/4237/69649/65b9de57Ff52bb63e/6c3d99884b3842b2.jpg!q70.jpg"
                },
                {
                  "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/138642/2/33034/61823/63b8cd48Fe08f3d25/57e6623ae31713ac.jpg!q70.jpg",
                  "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/138642/2/33034/61823/63b8cd48Fe08f3d25/57e6623ae31713ac.jpg!q70.jpg"
                }
              ]
            },
            "floorId": "flo_1330",
            "isInventedFloor": 0,
            "mId": "bpMainImage",
            "mainFloor": 0,
            "sonsType": 0,
            "sortId": 1
          },
          {
            "bId": "bpconfigCustom_flo_1846",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "top_circle_separator"
            },
            "data": [],
            "floorId": "flo_1846",
            "isInventedFloor": 0,
            "mId": "bpDiJiaGouPremiumPrice",
            "mainFloor": 1,
            "sonsType": 0,
            "sortId": 2
          },
          {
            "bId": "bpconfigCustom_flo_1334",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "empty"
            },
            "data": {
              "imgToWareName": [],
              "imgUrlToWareName": [],
              "showAttention": false,
              "title": "安踏男鞋休闲运动鞋新款网面透气板鞋跑步鞋子男户外训练体测鞋 -7二度灰/安踏白 42"
            },
            "floorId": "flo_1334",
            "isInventedFloor": 0,
            "mId": "bpName",
            "mainFloor": 0,
            "sonsType": 0,
            "sortId": 3
          },
          {
            "bId": "bpconfigCustom_flo_1998",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "empty"
            },
            "floorId": "flo_1998",
            "isInventedFloor": 0,
            "mId": "bpHpzjMarketing",
            "mainFloor": 1,
            "sonsType": 0,
            "sortId": 4
          },
          {
            "bId": "bpconfigCustom_flo_1995",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "top_circle_separator"
            },
            "floorId": "flo_1995",
            "isInventedFloor": 0,
            "mId": "specialMid",
            "mainFloor": 1,
            "sonsType": 0,
            "sortId": 5
          },
          {
            "bId": "bpconfigCustom_flo_1872",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "gray_with_line_both_sides"
            },
            "data": {
              "ad": {
                "adLink": "",
                "adLinkContent": "",
                "adword": "领券满99-10丨200-20丨300-30丨",
                "color": "#f23030",
                "textColor": "#8c8c8c"
              }
            },
            "floorId": "flo_1872",
            "isInventedFloor": 0,
            "mId": "bpAdword",
            "mainFloor": 0,
            "sonsType": 0,
            "sortId": 6
          },
          {
            "bId": "bpconfigCustom_flo_1336",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "white_line_LR"
            },
            "data": {
              "colorSize": [
                {
                  "buttons": [
                    {
                      "canSelected": true,
                      "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg",
                      "no": "1",
                      "skuList": [
                        "10061004645932",
                        "10335871592",
                        "10335871593",
                        "10335871594",
                        "10335871595",
                        "10335871596",
                        "11488668356",
                        "11500318990"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "21-5雾灰/黑/安踏白"
                    },
                    {
                      "canSelected": true,
                      "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/229337/37/10684/149167/65b9de38F890290bc/0e3cac8acb2252f7.jpg",
                      "no": "2",
                      "skuList": [
                        "10061004645933",
                        "10335871598",
                        "10335871599",
                        "10335871600",
                        "10335876501",
                        "10335876502",
                        "11488668357",
                        "11500318989"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "-7二度灰/安踏白"
                    },
                    {
                      "canSelected": true,
                      "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/191411/31/41760/185014/6604c1d9F2442bcb3/ff9c64662c28a904.jpg",
                      "no": "3",
                      "skuList": [
                        "10061004645934",
                        "10335871586",
                        "10335871587",
                        "10335871588",
                        "10335871589",
                        "10335871590",
                        "11488668358",
                        "11500318988"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "-6黑/安踏白"
                    },
                    {
                      "canSelected": true,
                      "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/94764/17/38453/168977/646c267cF71245dd9/c261623a4436c3e1.jpg",
                      "no": "4",
                      "skuList": [
                        "10061004645935",
                        "43139143226",
                        "43139143227",
                        "43139143228",
                        "43139143229",
                        "43139143230",
                        "43139143231",
                        "43139143233"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "-8黑(推荐)"
                    },
                    {
                      "canSelected": true,
                      "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/237096/17/18387/289841/66f2809bF936383e0/6f8d05bdda75d564.jpg",
                      "no": "5",
                      "skuList": [
                        "10061004645936",
                        "43139143234",
                        "43139143235",
                        "43139143236",
                        "43139143237",
                        "43139143238",
                        "43139143239",
                        "43139143241"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "-11黑/金属金(皮面防水)"
                    },
                    {
                      "canSelected": true,
                      "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/228370/29/28520/215303/6746b885F2de5746d/a4a1273dd6b0cb60.jpg",
                      "no": "6",
                      "skuList": [
                        "10061004645937",
                        "43139143242",
                        "43139143243",
                        "43139143244",
                        "43139143245",
                        "43139143246",
                        "43139143247",
                        "43139143249"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "-14黑(皮面防水)"
                    },
                    {
                      "canSelected": true,
                      "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/212326/15/34610/128896/65151a36Fa123d914/42abf14d222afa64.jpg",
                      "no": "7",
                      "skuList": [
                        "10061004645938",
                        "17160622593",
                        "17160622594",
                        "17160622595",
                        "17160622596",
                        "17160622598",
                        "17160622599",
                        "17160622600"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "-12黑/象牙白(皮面防水)"
                    },
                    {
                      "canSelected": true,
                      "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/257723/18/2692/108847/676a7d9fF7ae851ac/40a1999de7918d21.jpg",
                      "no": "8",
                      "skuList": [
                        "10061004645939",
                        "16878195187",
                        "16878195188",
                        "16878195189",
                        "16878195191",
                        "16878195192",
                        "16878195193",
                        "16878195194"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "27-7象牙白/白灰绿"
                    }
                  ],
                  "dimensionNumber": 1,
                  "title": "颜色"
                },
                {
                  "buttons": [
                    {
                      "canSelected": true,
                      "no": "1",
                      "skuList": [
                        "10335871589",
                        "10335871595",
                        "10335876501",
                        "16878195191",
                        "17160622595",
                        "43139143226",
                        "43139143234",
                        "43139143242"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "43"
                    },
                    {
                      "canSelected": true,
                      "no": "2",
                      "skuList": [
                        "10335871588",
                        "10335871594",
                        "10335871600",
                        "16878195194",
                        "17160622594",
                        "43139143227",
                        "43139143235",
                        "43139143243"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "42"
                    },
                    {
                      "canSelected": true,
                      "no": "3",
                      "skuList": [
                        "10335871587",
                        "10335871593",
                        "10335871599",
                        "16878195192",
                        "17160622593",
                        "43139143228",
                        "43139143236",
                        "43139143244"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "39"
                    },
                    {
                      "canSelected": true,
                      "no": "4",
                      "skuList": [
                        "10335871586",
                        "10335871592",
                        "10335871598",
                        "16878195187",
                        "17160622600",
                        "43139143229",
                        "43139143237",
                        "43139143245"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "40"
                    },
                    {
                      "canSelected": true,
                      "no": "5",
                      "skuList": [
                        "10335871590",
                        "10335871596",
                        "10335876502",
                        "16878195188",
                        "17160622598",
                        "43139143230",
                        "43139143238",
                        "43139143246"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "44"
                    },
                    {
                      "canSelected": true,
                      "no": "6",
                      "skuList": [
                        "11500318988",
                        "11500318989",
                        "11500318990",
                        "16878195189",
                        "17160622599",
                        "43139143231",
                        "43139143239",
                        "43139143247"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "40.5"
                    },
                    {
                      "canSelected": true,
                      "no": "7",
                      "skuList": [
                        "10061004645932",
                        "10061004645933",
                        "10061004645934",
                        "10061004645935",
                        "10061004645936",
                        "10061004645937",
                        "10061004645938",
                        "10061004645939"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "41"
                    },
                    {
                      "canSelected": true,
                      "no": "8",
                      "skuList": [
                        "11488668356",
                        "11488668357",
                        "11488668358",
                        "16878195193",
                        "17160622596",
                        "43139143233",
                        "43139143241",
                        "43139143249"
                      ],
                      "skuState": -1,
                      "stockState": 1,
                      "text": "42.5"
                    }
                  ],
                  "dimensionNumber": 2,
                  "title": "尺码"
                }
              ],
              "colorSizeTips": "#与其他已选项无法组成可售商品,请重选",
              "imageUrl": "jfs/t1/229337/37/10684/149167/65b9de38F890290bc/0e3cac8acb2252f7.jpg",
              "mainPrice": "189.00",
              "selected": "",
              "skuBuMap": [],
              "skuNum": 1,
              "unit": ""
            },
            "floorId": "flo_1336",
            "isInventedFloor": 0,
            "mId": "bpChoice",
            "mainFloor": 0,
            "sonsType": 0,
            "sortId": 8
          },
          {
            "bId": "bpconfigCustom_flo_1337",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "white_line_LR"
            },
            "data": {
              "addressStock": {
                "stockDesc": ",预计3月28日24:00前发货,3月31日24:00前送达"
              },
              "defaultAddr": {
                "cityId": "72",
                "cityName": "朝阳区",
                "countyId": "2799",
                "countyName": "三环以内",
                "provinceId": "1",
                "provinceName": "北京",
                "townId": "0",
                "townName": ""
              },
              "delivery": "福建泉州市",
              "fare": "在线支付免运费",
              "shippingAddress": "北京 朝阳区 三环以内 ",
              "stateStockId": -1,
              "stock": "现货,预计3月28日24:00前发货,3月31日24:00前送达",
              "stockDcId": -1,
              "stockState": 33
            },
            "floorId": "flo_1337",
            "isInventedFloor": 0,
            "mId": "bpAddr",
            "mainFloor": 0,
            "sonsType": 0,
            "sortId": 9
          },
          {
            "bId": "bpconfigCustom_flo_1847",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "white_line_LR"
            },
            "data": {
              "fare": "在线支付免运费"
            },
            "floorId": "flo_1847",
            "isInventedFloor": 0,
            "mId": "bpFreight",
            "mainFloor": 0,
            "sonsType": 0,
            "sortId": 10
          },
          {
            "bId": "bpconfigCustom_flo_787",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "gray_with_line_both_sides"
            },
            "data": {
              "isIcon": true,
              "servIconRelation": [
                {
                  "iconType": "exclamation",
                  "iconValue": "detail_006"
                },
                {
                  "iconType": "right",
                  "iconValue": "detail_005"
                }
              ],
              "serviceInfo": {
                "basic": {
                  "iconList": [
                    {
                      "iconType": "right",
                      "imageUrl": "https://m.360buyimg.com/cc/jfs/t4984/195/1172610074/2110/e12abb06/58ede3e4Nfc650507.png",
                      "show": true,
                      "sortId": 2,
                      "text": "可配送海外",
                      "tip": "支持收货地址为海外"
                    },
                    {
                      "iconType": "right",
                      "imageUrl": "http://m.360buyimg.com/mobilecms/jfs/t1918/274/1086575987/1970/bc766f2d/5680f4b3N24b48659.png",
                      "show": true,
                      "sortId": 7,
                      "text": "7天无理由退货(使用后不支持)",
                      "tip": "支持7天无理由退货(使用后不支持)"
                    },
                    {
                      "iconType": "right",
                      "imageUrl": "http://m.360buyimg.com/cc/jfs/t9070/350/2223643937/1717/3269e00a/59c90260N943c64d9.png",
                      "show": true,
                      "sortId": 7,
                      "text": "闪电退款",
                      "tip": "京东优质用户以7天无理由相关原因提交售后退货申请时,满足相关条件可立刻退款"
                    },
                    {
                      "iconType": "right",
                      "imageUrl": "http://m.360buyimg.com/mobilecms/jfs/t2176/234/1856411458/2044/91ae040b/5680f585N70da96a6.png",
                      "show": true,
                      "sortId": 6,
                      "text": "店铺发货&售后",
                      "tip": "由安踏悠购专卖店从福建泉州市发货并提供售后服务"
                    }
                  ],
                  "title": "服务说明"
                }
              }
            },
            "floorId": "flo_787",
            "isInventedFloor": 0,
            "mId": "bpServe",
            "mainFloor": 0,
            "sonsType": 0,
            "sortId": 11
          },
          {
            "bId": "bpconfigCustom_flo_237",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "gray_with_line_both_sides"
            },
            "data": {
              "productcomments": {
                "allCnt": "50万+",
                "allCntStr": "50万+",
                "badCnt": "1000+",
                "commentButtonText": "查看全部评价",
                "commentInfoList": [
                  {
                    "commentInfo": {
                      "afterComment": [],
                      "ckeKeyWordBury": "",
                      "commentData": "这款鞋还是挺不错的,适合南方春夏穿,穿起来舒服,不闷脚。我运动也算比较多,每次运动完脚也是干干的,非常好。而且外形看起来也不错,京东购物大平台,值得信赖!",
                      "commentDate": "2025-03-16 08:34:37",
                      "commentId": "22604095259",
                      "commentScore": "5",
                      "commentType": "1",
                      "guid": "b4029a6a5a3292cf12d200562a97d8c6",
                      "haveLiked": "0",
                      "isShowPlusPendant": "1",
                      "isShowUserLevel": "0",
                      "maidianInfo": "",
                      "markingList": [],
                      "noCommentMessage": "用户未及时作出评价哦~",
                      "pictureInfoList": [
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/270785/27/4453/167434/67d61c9cF1308fdbe/ecff579da3df1f20.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/270785/27/4453/167434/67d61c9cF1308fdbe/ecff579da3df1f20.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/277023/33/4028/223100/67d61c9cFa870829b/19661733623e3fed.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/277023/33/4028/223100/67d61c9cFa870829b/19661733623e3fed.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/272954/22/3352/179027/67d61c9cF92ca17af/ed257b9357cbfaa2.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/272954/22/3352/179027/67d61c9cF92ca17af/ed257b9357cbfaa2.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/279618/16/3435/200636/67d61c9cFbed76339/6585e91c82622c97.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/279618/16/3435/200636/67d61c9cFbed76339/6585e91c82622c97.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/277921/23/3918/419321/67d61c9cFd0553fac/6477289af27abbaf.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/277921/23/3918/419321/67d61c9cFd0553fac/6477289af27abbaf.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/281990/28/3439/360302/67d61c9cF633551ca/9cfc3f9166517db1.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/281990/28/3439/360302/67d61c9cF633551ca/9cfc3f9166517db1.jpg.dpg"
                        }
                      ],
                      "plusAddress": "https://plus.m.jd.com/index",
                      "plusAvailable": "201",
                      "plusLogoId": "tab_gif_085",
                      "plusLogoType": "2",
                      "praiseCnt": "0",
                      "replyCnt": "1",
                      "testId": "A",
                      "userImgURL": "https://img30.360buyimg.com/mobile/s60x60_jfs/t493/15/557644423/10532/62d3112/5473e62aNdb4251d8.png",
                      "userNickName": "吴***河",
                      "wareAttribute": [
                        {
                          "颜色": "-8黑(推荐)"
                        },
                        {
                          "型号": "41"
                        }
                      ]
                    }
                  },
                  {
                    "commentInfo": {
                      "afterComment": [],
                      "ckeKeyWordBury": "",
                      "commentData": "本来还很担心东西不好,拿到手发现完全多虑了,五星好评质量很好哦,发货也很快,一家非常喜欢的店铺,我要疯狂推荐给朋友们东西比我想象中的还要完美,十分给力,值得入手买到了心仪的商品,物美价廉,质量绝佳。物流迅速,商家服务周到,售后无忧。",
                      "commentDate": "2025-03-18 17:29:02",
                      "commentId": "22629427504",
                      "commentScore": "5",
                      "commentType": "1",
                      "guid": "3f6114a5c5952eaf36b0a3844cfbbb14",
                      "haveLiked": "0",
                      "isShowPlusPendant": "1",
                      "isShowUserLevel": "0",
                      "maidianInfo": "",
                      "markingList": [],
                      "noCommentMessage": "用户未及时作出评价哦~",
                      "pictureInfoList": [
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/275233/39/5457/113426/67d93cdcFba8ab723/27ef99bd46ff2fb7.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/275233/39/5457/113426/67d93cdcFba8ab723/27ef99bd46ff2fb7.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/277402/36/5504/103516/67d93cdcF161cf2df/fe72ed78414facda.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/277402/36/5504/103516/67d93cdcF161cf2df/fe72ed78414facda.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/284342/10/4563/93354/67d93cddF925a9240/2c3df8f7f34d7543.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/284342/10/4563/93354/67d93cddF925a9240/2c3df8f7f34d7543.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/284292/38/4395/148811/67d93cddFa76a7f6f/d048dac6694a82eb.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/284292/38/4395/148811/67d93cddFa76a7f6f/d048dac6694a82eb.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/273495/13/5448/3409151/67d93cdeF8ab89779/ca5a18cb3a8acdbe.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/273495/13/5448/3409151/67d93cdeF8ab89779/ca5a18cb3a8acdbe.jpg.dpg"
                        }
                      ],
                      "plusAddress": "https://plus.m.jd.com/index",
                      "plusAvailable": "103",
                      "plusLogoId": "",
                      "plusLogoType": "",
                      "praiseCnt": "0",
                      "replyCnt": "0",
                      "testId": "A",
                      "userImgURL": "https://storage.360buyimg.com/i.imageUpload/6a645f6f44786f5658536d6b7a4a4531373334343937363530363238_sma.jpg",
                      "userNickName": "j***l",
                      "wareAttribute": [
                        {
                          "颜色": "-11黑/金属金(皮面防水)"
                        },
                        {
                          "型号": "41"
                        }
                      ]
                    }
                  },
                  {
                    "commentInfo": {
                      "afterComment": [],
                      "ckeKeyWordBury": "",
                      "commentData": "这款鞋子质量比较好,轻便透气,不易臭脚,洗完鞋子而且干的很快",
                      "commentDate": "2025-03-21 11:42:17",
                      "commentId": "22653912580",
                      "commentScore": "5",
                      "commentType": "1",
                      "guid": "236fd260ae9a517d365bb1b092dacc46",
                      "haveLiked": "0",
                      "isShowPlusPendant": "1",
                      "isShowUserLevel": "0",
                      "maidianInfo": "",
                      "markingList": [],
                      "noCommentMessage": "用户未及时作出评价哦~",
                      "pictureInfoList": [
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/278162/37/7099/183928/67dce016Fe0f3ba79/bedd65f05447d011.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/278162/37/7099/183928/67dce016Fe0f3ba79/bedd65f05447d011.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/277377/4/7152/159572/67dce016Febc77c7a/224b52fb775a14fa.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/277377/4/7152/159572/67dce016Febc77c7a/224b52fb775a14fa.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/270655/27/7513/225592/67dce017Ffddbc39c/e0b433d69192dfe5.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/270655/27/7513/225592/67dce017Ffddbc39c/e0b433d69192dfe5.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/282585/5/6397/137030/67dce018Fe0af402a/3cf676f518e832f6.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/282585/5/6397/137030/67dce018Fe0af402a/3cf676f518e832f6.jpg.dpg"
                        },
                        {
                          "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/277209/35/7118/255691/67dce018Fd99b65f5/467adf9417fb07bf.jpg.dpg",
                          "mediaType": "1",
                          "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/277209/35/7118/255691/67dce018Fd99b65f5/467adf9417fb07bf.jpg.dpg"
                        }
                      ],
                      "plusAddress": "https://plus.m.jd.com/index",
                      "plusAvailable": "201",
                      "plusLogoId": "tab_gif_085",
                      "plusLogoType": "2",
                      "praiseCnt": "0",
                      "replyCnt": "0",
                      "testId": "A",
                      "userImgURL": "https://img30.360buyimg.com/mobile/s60x60_jfs/t493/15/557644423/10532/62d3112/5473e62aNdb4251d8.png",
                      "userNickName": "j***t",
                      "wareAttribute": [
                        {
                          "颜色": "-8黑(推荐)"
                        },
                        {
                          "型号": "42"
                        }
                      ]
                    }
                  }
                ],
                "commentTitle": "评价",
                "commentVideoInfoList": [],
                "defaultGoodCountText": "MjDkuIcr5Liq55So5oi36buY6K6k6K+E5Lu35LqG6K+l5ZWG5ZOB",
                "defaultGoodLogo": "https://m.360buyimg.com/mobilecms/jfs/t10447/176/1359340654/2177/9ceed2ba/59df1d27N55b368df.png",
                "goodCnt": "10万+",
                "goodRate": "97%",
                "isAllDefaultGoodComment": false,
                "isShowYoutuShaituBtn": "1",
                "maxPage": 100,
                "normalCnt": "2000+",
                "pictureCnt": "500",
                "semanticTagList": [
                  {
                    "canBeFiltered": true,
                    "ckeKeyWordBury": "eid=100^^tagid=a5cc7d2e7eee5abb^^pid=30023^^sku=10073073663^^sversion=1000^^token=16cd4f27517c7948",
                    "count": "3158",
                    "id": "a5cc7d2e7eee5abb",
                    "name": "柔软舒适",
                    "stand": "1",
                    "tagId": "a5cc7d2e7eee5abb",
                    "type": "4"
                  },
                  {
                    "canBeFiltered": true,
                    "ckeKeyWordBury": "eid=100^^tagid=c289cd4cafc66db9^^pid=30023^^sku=10073073663^^sversion=1000^^token=18e9fa24a28ea805",
                    "count": "374",
                    "id": "c289cd4cafc66db9",
                    "name": "无累赘感",
                    "stand": "1",
                    "tagId": "c289cd4cafc66db9",
                    "type": "4"
                  },
                  {
                    "canBeFiltered": true,
                    "ckeKeyWordBury": "eid=100^^tagid=8034c18a2f521cdc^^pid=30023^^sku=10073073663^^sversion=1000^^token=ab676ac0a9c86b57",
                    "count": "230",
                    "id": "8034c18a2f521cdc",
                    "name": "透气性好",
                    "stand": "1",
                    "tagId": "8034c18a2f521cdc",
                    "type": "4"
                  },
                  {
                    "canBeFiltered": true,
                    "ckeKeyWordBury": "eid=100^^tagid=2f0435df19147d25^^pid=30023^^sku=10073073663^^sversion=1000^^token=505c4f7252a7277c",
                    "count": "84",
                    "id": "2f0435df19147d25",
                    "name": "没有异味",
                    "stand": "1",
                    "tagId": "2f0435df19147d25",
                    "type": "4"
                  },
                  {
                    "canBeFiltered": true,
                    "ckeKeyWordBury": "eid=100^^tagid=6148130cf344e461^^pid=30023^^sku=10073073663^^sversion=1000^^token=414980dfb723bcdb",
                    "count": "84",
                    "id": "6148130cf344e461",
                    "name": "弹性十足",
                    "stand": "1",
                    "tagId": "6148130cf344e461",
                    "type": "4"
                  },
                  {
                    "canBeFiltered": true,
                    "ckeKeyWordBury": "eid=100^^tagid=65cd690ef16435d8^^pid=30023^^sku=10073073663^^sversion=1000^^token=16b8e31bdf1af08e",
                    "count": "49",
                    "id": "65cd690ef16435d8",
                    "name": "防水防滑",
                    "stand": "1",
                    "tagId": "65cd690ef16435d8",
                    "type": "4"
                  },
                  {
                    "canBeFiltered": true,
                    "ckeKeyWordBury": "eid=100^^tagid=9e15250d0e5bae40^^pid=30023^^sku=10073073663^^sversion=1000^^token=e862d66ee5726682",
                    "count": "47",
                    "id": "9e15250d0e5bae40",
                    "name": "经久耐用",
                    "stand": "1",
                    "tagId": "9e15250d0e5bae40",
                    "type": "4"
                  }
                ],
                "showPicCnt": "500",
                "testId": "A",
                "videoAutoPlaySwitch": "1"
              }
            },
            "floorId": "flo_237",
            "mId": "bpEvaluate",
            "mainFloor": 1,
            "sortId": 12
          },
          {
            "bId": "bpconfigCustom_flo_1956",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "gray_with_line_both_sides"
            },
            "data": {
              "afterSale": "商品自签收之日起计算,7日内无条件退货,15日内换货,30天内提供保修服务。需要无条件退换的产品请确保包装完好,原装所有配件及发票齐全,未经穿着且不影响二次销售。",
              "containCssStyle": false,
              "productDesc": "",
              "specification": {
                "expandInfoList": [
                  {
                    "AttributeList": [
                      {
                        "attributeName": "中底功能",
                        "attributeSort": 1,
                        "attributes": "轻质"
                      },
                      {
                        "attributeName": "流行元素",
                        "attributeSort": 0,
                        "attributes": "车缝线"
                      },
                      {
                        "attributeName": "鞋面科技",
                        "attributeSort": 1,
                        "attributes": "织物呼吸网"
                      },
                      {
                        "attributeName": "上市时间",
                        "attributeSort": 13,
                        "attributes": "2025年春季"
                      },
                      {
                        "attributeName": "功能",
                        "attributeSort": 6,
                        "attributes": "轻便,透气"
                      },
                      {
                        "attributeName": "中底科技",
                        "attributeSort": 1,
                        "attributes": "EVA中底"
                      },
                      {
                        "attributeName": "鞋底材质",
                        "attributeSort": 0,
                        "attributes": "EVA"
                      },
                      {
                        "attributeName": "类别",
                        "attributeSort": 5,
                        "attributes": "入门跑鞋,稳定跑鞋,缓冲跑鞋"
                      },
                      {
                        "attributeName": "适用场地",
                        "attributeSort": 8,
                        "attributes": "跑道,公路"
                      },
                      {
                        "attributeName": "闭合方式",
                        "attributeSort": 10,
                        "attributes": "系带"
                      },
                      {
                        "attributeName": "鞋面功能",
                        "attributeSort": 1,
                        "attributes": "轻质"
                      },
                      {
                        "attributeName": "适用季节",
                        "attributeSort": 5,
                        "attributes": "春季,夏季"
                      },
                      {
                        "attributeName": "外底功能",
                        "attributeSort": 1,
                        "attributes": "轻质"
                      },
                      {
                        "attributeName": "鞋面材质",
                        "attributeSort": 17,
                        "attributes": "织物,网布"
                      }
                    ]
                  }
                ],
                "viewGraphicDetailDTO.wareQD": "鞋子×1双,鞋盒×1个,商品规格吊牌×1个。"
              },
              "url": {
                "url": "https://aplb2b-picinfo.jd.com/?skuId=10335871600"
              },
              "wareQD": "鞋子×1双,鞋盒×1个,商品规格吊牌×1个。",
              "wareTextIntroduction": "\u003Cp\u003E\u003Cbr/\u003E\u003C/p\u003E\u003Cp\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/213470/6/37025/60860/65b5a8e0F1e214792/1d922820c50664da.jpg\" style=\"font-size: unset;\"/\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/151632/32/21119/159858/65b5a8e0F0c89bdd8/b24810822c9e8230.jpg\" style=\"font-size: unset;\"/\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/236601/28/11705/220992/65b5a8dfFf4c0ee78/fa6eaebdb7eb069e.jpg\" style=\"font-size: unset;\"/\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/101983/2/45089/158320/65b5a8e0Fe45e9813/e6a4cbb98d3c0793.jpg\" style=\"font-size: unset;\"/\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/234949/5/13066/110921/65b5a8dfF8ccd2ff5/22bc738171af7dae.jpg\" style=\"font-size: unset;\"/\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/227270/22/13570/139445/65b5a8deF5669edf8/d0f4453455f2bd13.jpg\" style=\"font-size: unset;\"/\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/242660/25/2010/85084/65b5a8deF4d4debeb/d882bcc7f6972c54.jpg\" style=\"font-size: unset;\"/\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/233599/38/12868/99751/65b5a8ddFe90c9c6b/7d05f8c9bfb02f3b.jpg\" style=\"font-size: unset;\"/\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/236949/34/12994/84716/65b5a8ddF8f1c6c8c/985ce27c47dba05b.jpg\" style=\"font-size: unset;\"/\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/228669/27/35538/219713/67ac5255F21b22f62/e0d1d6d41d746c56.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/267518/12/18747/50960/67ac5254Fc4fda53d/8813f8bc0bbc4fc8.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/254802/33/20387/200784/67ac5253Fd466eda1/754edde8330525ea.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/260711/26/19073/66719/67ac5252F99824a5a/2964b6253df22a90.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/252546/33/20077/256578/67ac5252Fa6aebd63/a3395c284a25959c.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/262821/40/19114/88098/67ac5250Fef684a04/94e2f33d9cf7f44e.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/250293/13/27324/244965/67ac5250F461c2c08/f8aa468dcbcba816.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/257398/27/18500/62530/67ac524fF2f6a11c5/36de195271ce5cbd.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/236482/36/35839/164457/67ac524eF5d54e63b/f73231c11f3fdc17.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/263099/40/18857/210469/67ac524eF9153123a/e754d8e1048c5cb9.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/252731/12/20136/237895/67ac524dFae6f6568/e7ffad7de79e0bdc.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/254745/3/19889/26327/67ac524cF5c1ed475/05593ef62652be79.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/250192/14/25270/186386/67ac524cF8f2af739/94f3d28048ba9db4.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/261371/38/18772/40742/67ac524aF68f1b666/2b825d28e81c7ab7.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/263127/26/18857/170843/67ac524aFe23b990b/64008aae3bda0ebb.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/257243/26/19214/2168/67ac5249F0b86238a/207e52730f22d484.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/266999/39/19023/127936/67ac5249F779c1f9f/51afa6f549058dd5.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/258548/2/19206/187264/67ac5248F9bd5d356/fafdca075c787991.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/267138/24/19104/28098/67ac5247F57eeb768/db5dd201b7ba92eb.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/260372/22/19026/127123/67ac5247F7be394fc/1e28dd6710f79640.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/259668/39/19170/175761/67ac5246F333ebc18/144fe836d06c5368.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/259018/20/19042/26106/67ac5245F305bd946/861906620564dab7.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/266236/23/18911/107623/67ac5245F3e7ba711/a971a0d4cc92ab81.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/267081/16/18925/119048/67ac523fF8d4338c0/d966917d3485b28c.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/233708/13/30681/145412/67ac523eF0a80fac8/d373262de2c604f4.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/265536/16/18930/33262/67ac523dF839ae592/972040a4d97542c6.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/262322/29/18941/56339/67ac523dF6454a180/45f877640e92c627.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/253299/26/20481/42448/67ac523cFe64a257c/504bbd3472f8d398.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/263197/17/19090/61492/67ac523cF1270aa45/a67fc4410a16a836.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/262169/14/19148/92075/67ac523cFc2903e2b/7e2bf524dcbc670b.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/263157/19/18886/149646/67ac523bFefcd87df/9f06c8875f279ca6.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/259867/16/19054/47506/67ac523aF08d13498/ff6cc4e32f5baf02.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/265081/8/18861/112855/67ac523aFed685d92/96aa3081b5c5c8c7.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/252995/9/20151/37666/67ac5239F69fb255c/ffb631d76e285ddc.jpg\" class=\"shop-editor-zone-insert\" style=\"max-width:100%;\"/ style=\"max-width:100%;\"\u003E\u003C/p\u003E\u003Cp\u003E\u003Cimg src=\"https://img10.360buyimg.com/imgzone/jfs/t1/155616/38/39139/180897/65b5a906F16716f86/ab2ad373c7659ba1.jpg\" style=\"font-size: unset;\"/\u003E\u003C/p\u003E"
            },
            "floorId": "flo_1956",
            "isInventedFloor": 0,
            "mId": "bpGraphincDetail",
            "mainFloor": 0,
            "sonsType": 0,
            "sortId": 13
          },
          {
            "bId": "bpconfigCustom_flo_1957",
            "cf": {
              "bgc": "#ffffff",
              "space": "0",
              "spl": "gray_with_line_both_sides"
            },
            "data": {
              "expandInfoList": [
                {
                  "AttributeList": [
                    {
                      "attributeName": "中底功能",
                      "attributeSort": 1,
                      "attributes": "轻质"
                    },
                    {
                      "attributeName": "流行元素",
                      "attributeSort": 0,
                      "attributes": "车缝线"
                    },
                    {
                      "attributeName": "鞋面科技",
                      "attributeSort": 1,
                      "attributes": "织物呼吸网"
                    },
                    {
                      "attributeName": "上市时间",
                      "attributeSort": 13,
                      "attributes": "2025年春季"
                    },
                    {
                      "attributeName": "功能",
                      "attributeSort": 6,
                      "attributes": "轻便,透气"
                    },
                    {
                      "attributeName": "中底科技",
                      "attributeSort": 1,
                      "attributes": "EVA中底"
                    },
                    {
                      "attributeName": "鞋底材质",
                      "attributeSort": 0,
                      "attributes": "EVA"
                    },
                    {
                      "attributeName": "类别",
                      "attributeSort": 5,
                      "attributes": "入门跑鞋,稳定跑鞋,缓冲跑鞋"
                    },
                    {
                      "attributeName": "适用场地",
                      "attributeSort": 8,
                      "attributes": "跑道,公路"
                    },
                    {
                      "attributeName": "闭合方式",
                      "attributeSort": 10,
                      "attributes": "系带"
                    },
                    {
                      "attributeName": "鞋面功能",
                      "attributeSort": 1,
                      "attributes": "轻质"
                    },
                    {
                      "attributeName": "适用季节",
                      "attributeSort": 5,
                      "attributes": "春季,夏季"
                    },
                    {
                      "attributeName": "外底功能",
                      "attributeSort": 1,
                      "attributes": "轻质"
                    },
                    {
                      "attributeName": "鞋面材质",
                      "attributeSort": 17,
                      "attributes": "织物,网布"
                    }
                  ]
                }
              ],
              "viewGraphicDetailDTO.wareQD": "鞋子×1双,鞋盒×1个,商品规格吊牌×1个。"
            },
            "floorId": "flo_1957",
            "isInventedFloor": 0,
            "mId": "bpSpecification",
            "mainFloor": 0,
            "sonsType": 0,
            "sortId": 14
          }
        ],
        "others": {
          "abTestInfo": {
            "ShopIntensifyAB": false,
            "collectABInfo": {
              "bottom3ABTest": true,
              "bottom4ABTest": true,
              "titleABTest": true
            },
            "feedBackAB": true,
            "hospitalAB": "A",
            "packABTest": 1,
            "recommendYhTag": false,
            "shopABTest": "a",
            "shopCardTypeAb": true,
            "shopExtendsAb": true,
            "showBuyLayer": true,
            "skuSource": 0
          },
          "adWordText": "领券满99-10丨200-20丨300-30丨",
          "buttonInfo": {
            "class": "com.jd.ware.view.export.dto.common.bean.ButtonInfo",
            "main": {
              "bgColor": "#FFA600,#FFB000,#FFBC00;#E59500,#E59B00,#E6A800;#bfbfbf,#bfbfbf,#bfbfbf",
              "class": "com.jd.ware.view.export.dto.common.bean.Button",
              "name": "立即购买",
              "source": 0,
              "textColor": "#ffffffff",
              "type": 1
            },
            "second": {
              "bgColor": "#F10000,#FF2000,#FF4F18;#D80000,#E51C00,#E54615;#bfbfbf,#bfbfbf,#bfbfbf",
              "class": "com.jd.ware.view.export.dto.common.bean.Button",
              "name": "加入购物车",
              "source": 0,
              "textColor": "#ffffffff",
              "type": 0
            }
          },
          "colorSizeInfo": {
            "colorSize": [
              {
                "buttons": [
                  {
                    "canSelected": true,
                    "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg",
                    "no": "1",
                    "skuList": [
                      "10061004645932",
                      "10335871592",
                      "10335871593",
                      "10335871594",
                      "10335871595",
                      "10335871596",
                      "11488668356",
                      "11500318990"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "21-5雾灰/黑/安踏白"
                  },
                  {
                    "canSelected": true,
                    "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/229337/37/10684/149167/65b9de38F890290bc/0e3cac8acb2252f7.jpg",
                    "no": "2",
                    "skuList": [
                      "10061004645933",
                      "10335871598",
                      "10335871599",
                      "10335871600",
                      "10335876501",
                      "10335876502",
                      "11488668357",
                      "11500318989"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "-7二度灰/安踏白"
                  },
                  {
                    "canSelected": true,
                    "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/191411/31/41760/185014/6604c1d9F2442bcb3/ff9c64662c28a904.jpg",
                    "no": "3",
                    "skuList": [
                      "10061004645934",
                      "10335871586",
                      "10335871587",
                      "10335871588",
                      "10335871589",
                      "10335871590",
                      "11488668358",
                      "11500318988"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "-6黑/安踏白"
                  },
                  {
                    "canSelected": true,
                    "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/94764/17/38453/168977/646c267cF71245dd9/c261623a4436c3e1.jpg",
                    "no": "4",
                    "skuList": [
                      "10061004645935",
                      "43139143226",
                      "43139143227",
                      "43139143228",
                      "43139143229",
                      "43139143230",
                      "43139143231",
                      "43139143233"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "-8黑(推荐)"
                  },
                  {
                    "canSelected": true,
                    "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/237096/17/18387/289841/66f2809bF936383e0/6f8d05bdda75d564.jpg",
                    "no": "5",
                    "skuList": [
                      "10061004645936",
                      "43139143234",
                      "43139143235",
                      "43139143236",
                      "43139143237",
                      "43139143238",
                      "43139143239",
                      "43139143241"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "-11黑/金属金(皮面防水)"
                  },
                  {
                    "canSelected": true,
                    "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/228370/29/28520/215303/6746b885F2de5746d/a4a1273dd6b0cb60.jpg",
                    "no": "6",
                    "skuList": [
                      "10061004645937",
                      "43139143242",
                      "43139143243",
                      "43139143244",
                      "43139143245",
                      "43139143246",
                      "43139143247",
                      "43139143249"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "-14黑(皮面防水)"
                  },
                  {
                    "canSelected": true,
                    "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/212326/15/34610/128896/65151a36Fa123d914/42abf14d222afa64.jpg",
                    "no": "7",
                    "skuList": [
                      "10061004645938",
                      "17160622593",
                      "17160622594",
                      "17160622595",
                      "17160622596",
                      "17160622598",
                      "17160622599",
                      "17160622600"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "-12黑/象牙白(皮面防水)"
                  },
                  {
                    "canSelected": true,
                    "imgUrl": "http://img11.360buyimg.com/n1/jfs/t1/257723/18/2692/108847/676a7d9fF7ae851ac/40a1999de7918d21.jpg",
                    "no": "8",
                    "skuList": [
                      "10061004645939",
                      "16878195187",
                      "16878195188",
                      "16878195189",
                      "16878195191",
                      "16878195192",
                      "16878195193",
                      "16878195194"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "27-7象牙白/白灰绿"
                  }
                ],
                "dimensionNumber": 1,
                "title": "颜色"
              },
              {
                "buttons": [
                  {
                    "canSelected": true,
                    "no": "1",
                    "skuList": [
                      "10335871589",
                      "10335871595",
                      "10335876501",
                      "16878195191",
                      "17160622595",
                      "43139143226",
                      "43139143234",
                      "43139143242"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "43"
                  },
                  {
                    "canSelected": true,
                    "no": "2",
                    "skuList": [
                      "10335871588",
                      "10335871594",
                      "10335871600",
                      "16878195194",
                      "17160622594",
                      "43139143227",
                      "43139143235",
                      "43139143243"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "42"
                  },
                  {
                    "canSelected": true,
                    "no": "3",
                    "skuList": [
                      "10335871587",
                      "10335871593",
                      "10335871599",
                      "16878195192",
                      "17160622593",
                      "43139143228",
                      "43139143236",
                      "43139143244"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "39"
                  },
                  {
                    "canSelected": true,
                    "no": "4",
                    "skuList": [
                      "10335871586",
                      "10335871592",
                      "10335871598",
                      "16878195187",
                      "17160622600",
                      "43139143229",
                      "43139143237",
                      "43139143245"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "40"
                  },
                  {
                    "canSelected": true,
                    "no": "5",
                    "skuList": [
                      "10335871590",
                      "10335871596",
                      "10335876502",
                      "16878195188",
                      "17160622598",
                      "43139143230",
                      "43139143238",
                      "43139143246"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "44"
                  },
                  {
                    "canSelected": true,
                    "no": "6",
                    "skuList": [
                      "11500318988",
                      "11500318989",
                      "11500318990",
                      "16878195189",
                      "17160622599",
                      "43139143231",
                      "43139143239",
                      "43139143247"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "40.5"
                  },
                  {
                    "canSelected": true,
                    "no": "7",
                    "skuList": [
                      "10061004645932",
                      "10061004645933",
                      "10061004645934",
                      "10061004645935",
                      "10061004645936",
                      "10061004645937",
                      "10061004645938",
                      "10061004645939"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "41"
                  },
                  {
                    "canSelected": true,
                    "no": "8",
                    "skuList": [
                      "11488668356",
                      "11488668357",
                      "11488668358",
                      "16878195193",
                      "17160622596",
                      "43139143233",
                      "43139143241",
                      "43139143249"
                    ],
                    "skuState": -1,
                    "stockState": 1,
                    "text": "42.5"
                  }
                ],
                "dimensionNumber": 2,
                "title": "尺码"
              }
            ],
            "colorSizeTips": "#与其他已选项无法组成可售商品,请重选"
          },
          "eventParam": {
            "sep": "{\"area\":\"1_72_2799_0\",\"sku\":[[\"10335871600\",\"189.00\",\"现货,预计3月28日24:00前发货,3月31日24:00前送达\",\"33\",\"0\"]]}",
            "sepNew": "{\"area\":\"1|72|2799|0\",\"sku\":\"10335871600\",\"stock\":\"现货,预计3月28日24:00前发货,3月31日24:00前送达\"}"
          },
          "priceInfo": {
            "jprice": "189.00",
            "mainPositionPrice": {
              "value": "189.00"
            },
            "priceType": 0,
            "secondPositionPrice": []
          },
          "priceLabel": "¥",
          "productcomments": {
            "allCnt": "50万+",
            "allCntStr": "50万+",
            "badCnt": "1000+",
            "commentButtonText": "查看全部评价",
            "commentInfoList": [
              {
                "commentInfo": {
                  "afterComment": [],
                  "ckeKeyWordBury": "",
                  "commentData": "这款鞋还是挺不错的,适合南方春夏穿,穿起来舒服,不闷脚。我运动也算比较多,每次运动完脚也是干干的,非常好。而且外形看起来也不错,京东购物大平台,值得信赖!",
                  "commentDate": "2025-03-16 08:34:37",
                  "commentId": "22604095259",
                  "commentScore": "5",
                  "commentType": "1",
                  "guid": "b4029a6a5a3292cf12d200562a97d8c6",
                  "haveLiked": "0",
                  "isShowPlusPendant": "1",
                  "isShowUserLevel": "0",
                  "maidianInfo": "",
                  "markingList": [],
                  "noCommentMessage": "用户未及时作出评价哦~",
                  "pictureInfoList": [
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/270785/27/4453/167434/67d61c9cF1308fdbe/ecff579da3df1f20.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/270785/27/4453/167434/67d61c9cF1308fdbe/ecff579da3df1f20.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/277023/33/4028/223100/67d61c9cFa870829b/19661733623e3fed.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/277023/33/4028/223100/67d61c9cFa870829b/19661733623e3fed.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/272954/22/3352/179027/67d61c9cF92ca17af/ed257b9357cbfaa2.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/272954/22/3352/179027/67d61c9cF92ca17af/ed257b9357cbfaa2.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/279618/16/3435/200636/67d61c9cFbed76339/6585e91c82622c97.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/279618/16/3435/200636/67d61c9cFbed76339/6585e91c82622c97.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/277921/23/3918/419321/67d61c9cFd0553fac/6477289af27abbaf.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/277921/23/3918/419321/67d61c9cFd0553fac/6477289af27abbaf.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/281990/28/3439/360302/67d61c9cF633551ca/9cfc3f9166517db1.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/281990/28/3439/360302/67d61c9cF633551ca/9cfc3f9166517db1.jpg.dpg"
                    }
                  ],
                  "plusAddress": "https://plus.m.jd.com/index",
                  "plusAvailable": "201",
                  "plusLogoId": "tab_gif_085",
                  "plusLogoType": "2",
                  "praiseCnt": "0",
                  "replyCnt": "1",
                  "testId": "A",
                  "userImgURL": "https://img30.360buyimg.com/mobile/s60x60_jfs/t493/15/557644423/10532/62d3112/5473e62aNdb4251d8.png",
                  "userNickName": "吴***河",
                  "wareAttribute": [
                    {
                      "颜色": "-8黑(推荐)"
                    },
                    {
                      "型号": "41"
                    }
                  ]
                }
              },
              {
                "commentInfo": {
                  "afterComment": [],
                  "ckeKeyWordBury": "",
                  "commentData": "本来还很担心东西不好,拿到手发现完全多虑了,五星好评质量很好哦,发货也很快,一家非常喜欢的店铺,我要疯狂推荐给朋友们东西比我想象中的还要完美,十分给力,值得入手买到了心仪的商品,物美价廉,质量绝佳。物流迅速,商家服务周到,售后无忧。",
                  "commentDate": "2025-03-18 17:29:02",
                  "commentId": "22629427504",
                  "commentScore": "5",
                  "commentType": "1",
                  "guid": "3f6114a5c5952eaf36b0a3844cfbbb14",
                  "haveLiked": "0",
                  "isShowPlusPendant": "1",
                  "isShowUserLevel": "0",
                  "maidianInfo": "",
                  "markingList": [],
                  "noCommentMessage": "用户未及时作出评价哦~",
                  "pictureInfoList": [
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/275233/39/5457/113426/67d93cdcFba8ab723/27ef99bd46ff2fb7.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/275233/39/5457/113426/67d93cdcFba8ab723/27ef99bd46ff2fb7.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/277402/36/5504/103516/67d93cdcF161cf2df/fe72ed78414facda.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/277402/36/5504/103516/67d93cdcF161cf2df/fe72ed78414facda.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/284342/10/4563/93354/67d93cddF925a9240/2c3df8f7f34d7543.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/284342/10/4563/93354/67d93cddF925a9240/2c3df8f7f34d7543.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/284292/38/4395/148811/67d93cddFa76a7f6f/d048dac6694a82eb.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/284292/38/4395/148811/67d93cddFa76a7f6f/d048dac6694a82eb.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/273495/13/5448/3409151/67d93cdeF8ab89779/ca5a18cb3a8acdbe.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/273495/13/5448/3409151/67d93cdeF8ab89779/ca5a18cb3a8acdbe.jpg.dpg"
                    }
                  ],
                  "plusAddress": "https://plus.m.jd.com/index",
                  "plusAvailable": "103",
                  "plusLogoId": "",
                  "plusLogoType": "",
                  "praiseCnt": "0",
                  "replyCnt": "0",
                  "testId": "A",
                  "userImgURL": "https://storage.360buyimg.com/i.imageUpload/6a645f6f44786f5658536d6b7a4a4531373334343937363530363238_sma.jpg",
                  "userNickName": "j***l",
                  "wareAttribute": [
                    {
                      "颜色": "-11黑/金属金(皮面防水)"
                    },
                    {
                      "型号": "41"
                    }
                  ]
                }
              },
              {
                "commentInfo": {
                  "afterComment": [],
                  "ckeKeyWordBury": "",
                  "commentData": "这款鞋子质量比较好,轻便透气,不易臭脚,洗完鞋子而且干的很快",
                  "commentDate": "2025-03-21 11:42:17",
                  "commentId": "22653912580",
                  "commentScore": "5",
                  "commentType": "1",
                  "guid": "236fd260ae9a517d365bb1b092dacc46",
                  "haveLiked": "0",
                  "isShowPlusPendant": "1",
                  "isShowUserLevel": "0",
                  "maidianInfo": "",
                  "markingList": [],
                  "noCommentMessage": "用户未及时作出评价哦~",
                  "pictureInfoList": [
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/278162/37/7099/183928/67dce016Fe0f3ba79/bedd65f05447d011.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/278162/37/7099/183928/67dce016Fe0f3ba79/bedd65f05447d011.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/277377/4/7152/159572/67dce016Febc77c7a/224b52fb775a14fa.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/277377/4/7152/159572/67dce016Febc77c7a/224b52fb775a14fa.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/270655/27/7513/225592/67dce017Ffddbc39c/e0b433d69192dfe5.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/270655/27/7513/225592/67dce017Ffddbc39c/e0b433d69192dfe5.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/282585/5/6397/137030/67dce018Fe0af402a/3cf676f518e832f6.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/282585/5/6397/137030/67dce018Fe0af402a/3cf676f518e832f6.jpg.dpg"
                    },
                    {
                      "largePicURL": "http://img30.360buyimg.com/shaidan/s640x640_jfs/t1/277209/35/7118/255691/67dce018Fd99b65f5/467adf9417fb07bf.jpg.dpg",
                      "mediaType": "1",
                      "picURL": "http://img30.360buyimg.com/shaidan/s310x310_jfs/t1/277209/35/7118/255691/67dce018Fd99b65f5/467adf9417fb07bf.jpg.dpg"
                    }
                  ],
                  "plusAddress": "https://plus.m.jd.com/index",
                  "plusAvailable": "201",
                  "plusLogoId": "tab_gif_085",
                  "plusLogoType": "2",
                  "praiseCnt": "0",
                  "replyCnt": "0",
                  "testId": "A",
                  "userImgURL": "https://img30.360buyimg.com/mobile/s60x60_jfs/t493/15/557644423/10532/62d3112/5473e62aNdb4251d8.png",
                  "userNickName": "j***t",
                  "wareAttribute": [
                    {
                      "颜色": "-8黑(推荐)"
                    },
                    {
                      "型号": "42"
                    }
                  ]
                }
              }
            ],
            "commentTitle": "评价",
            "commentVideoInfoList": [],
            "defaultGoodCountText": "MjDkuIcr5Liq55So5oi36buY6K6k6K+E5Lu35LqG6K+l5ZWG5ZOB",
            "defaultGoodLogo": "https://m.360buyimg.com/mobilecms/jfs/t10447/176/1359340654/2177/9ceed2ba/59df1d27N55b368df.png",
            "goodCnt": "10万+",
            "goodRate": "97%",
            "isAllDefaultGoodComment": false,
            "isShowYoutuShaituBtn": "1",
            "maxPage": 100,
            "normalCnt": "2000+",
            "pictureCnt": "500",
            "semanticTagList": [
              {
                "canBeFiltered": true,
                "ckeKeyWordBury": "eid=100^^tagid=a5cc7d2e7eee5abb^^pid=30023^^sku=10073073663^^sversion=1000^^token=16cd4f27517c7948",
                "count": "3158",
                "id": "a5cc7d2e7eee5abb",
                "name": "柔软舒适",
                "stand": "1",
                "tagId": "a5cc7d2e7eee5abb",
                "type": "4"
              },
              {
                "canBeFiltered": true,
                "ckeKeyWordBury": "eid=100^^tagid=c289cd4cafc66db9^^pid=30023^^sku=10073073663^^sversion=1000^^token=18e9fa24a28ea805",
                "count": "374",
                "id": "c289cd4cafc66db9",
                "name": "无累赘感",
                "stand": "1",
                "tagId": "c289cd4cafc66db9",
                "type": "4"
              },
              {
                "canBeFiltered": true,
                "ckeKeyWordBury": "eid=100^^tagid=8034c18a2f521cdc^^pid=30023^^sku=10073073663^^sversion=1000^^token=ab676ac0a9c86b57",
                "count": "230",
                "id": "8034c18a2f521cdc",
                "name": "透气性好",
                "stand": "1",
                "tagId": "8034c18a2f521cdc",
                "type": "4"
              },
              {
                "canBeFiltered": true,
                "ckeKeyWordBury": "eid=100^^tagid=2f0435df19147d25^^pid=30023^^sku=10073073663^^sversion=1000^^token=505c4f7252a7277c",
                "count": "84",
                "id": "2f0435df19147d25",
                "name": "没有异味",
                "stand": "1",
                "tagId": "2f0435df19147d25",
                "type": "4"
              },
              {
                "canBeFiltered": true,
                "ckeKeyWordBury": "eid=100^^tagid=6148130cf344e461^^pid=30023^^sku=10073073663^^sversion=1000^^token=414980dfb723bcdb",
                "count": "84",
                "id": "6148130cf344e461",
                "name": "弹性十足",
                "stand": "1",
                "tagId": "6148130cf344e461",
                "type": "4"
              },
              {
                "canBeFiltered": true,
                "ckeKeyWordBury": "eid=100^^tagid=65cd690ef16435d8^^pid=30023^^sku=10073073663^^sversion=1000^^token=16b8e31bdf1af08e",
                "count": "49",
                "id": "65cd690ef16435d8",
                "name": "防水防滑",
                "stand": "1",
                "tagId": "65cd690ef16435d8",
                "type": "4"
              },
              {
                "canBeFiltered": true,
                "ckeKeyWordBury": "eid=100^^tagid=9e15250d0e5bae40^^pid=30023^^sku=10073073663^^sversion=1000^^token=e862d66ee5726682",
                "count": "47",
                "id": "9e15250d0e5bae40",
                "name": "经久耐用",
                "stand": "1",
                "tagId": "9e15250d0e5bae40",
                "type": "4"
              }
            ],
            "showPicCnt": "500",
            "testId": "A",
            "videoAutoPlaySwitch": "1"
          },
          "property": {
            "addAndSubToast": {
              "lowestToastText": "最少购买1件哦!"
            },
            "androidImageSwitch": true,
            "buyMaxNum": 200,
            "cartEnAble": true,
            "cartFlag": true,
            "category": "1318;12099;9756",
            "chatUrl": "http://m.360buyimg.com/n3/jfs/t1/229337/37/10684/149167/65b9de38F890290bc/0e3cac8acb2252f7.jpg",
            "degradeShare": false,
            "easyBuy": false,
            "hasPrescript": false,
            "isBuyCode": false,
            "isBybt": false,
            "isCollect": false,
            "isEasyBuyPrice": true,
            "isEncrypt": true,
            "isFQY": false,
            "isGiftCard": false,
            "isHitPlusSubsidy": false,
            "isJx": false,
            "isJzfp": false,
            "isOP": false,
            "isOTC": "0",
            "isPop": true,
            "isRegisterUser": false,
            "isRegularPrice": true,
            "isRx": false,
            "isShowShopNameB": false,
            "isSimpleSelect": false,
            "isSpellPurchase": false,
            "isXnzt": false,
            "isYuShou": false,
            "recTabEnable": true,
            "shareUrl": "https://item.m.jd.com/product/10335871600.html",
            "skuNum": "1",
            "venderStore": false,
            "venderType": "0",
            "virtualCardUrl": "https://gamerecg.m.jd.com?skuId=10335871600&chargeType=9756&skuName=安踏男鞋休闲运动鞋新款网面透气板鞋跑步鞋子男户外训练体测鞋 -7二度灰/安踏白 42&skuPrice=189.00",
            "xnzysp": "3",
            "yhhyd": false
          },
          "shopInfo": {
            "customerService": {
              "allGoodJumpUrl": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"shopId\":\"213251\",\"venderId\":\"221247\",\"jumpTab\":\"allProduct\"}",
              "chatInfo": {
                "allGoodIcon": "detail_030",
                "allGoodText": "精选商品",
                "bottomIcon": "detail_044",
                "bottomText": "联系客服",
                "isBubble": false,
                "shopIcon": "detail_044",
                "shopText": "联系客服"
              },
              "hasChat": true,
              "hasJimi": false,
              "inShopLookJumpUrl": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"shopId\":\"213251\",\"venderId\":\"221247\",\"jumpTab\":\"home\"}",
              "mLink": "http://m.jd.com/product/10335871600.html",
              "online": true
            },
            "shop": {
              "afterSaleGrade": "高",
              "afterSaleScore": "4.7",
              "afterSaleTxt": "售后",
              "brief": "安踏官方专卖店,正品保证",
              "cardType": 3,
              "cateGoodShop": 0,
              "diamond": false,
              "evaluateGrade": "低",
              "evaluateScore": "4.3",
              "evaluateTxt": "评价",
              "followCount": 255051,
              "followText": "关注人数",
              "giftIcon": "",
              "goodShop": 0,
              "hasCoupon": false,
              "hotcates": [
                {
                  "cid": 4537202,
                  "cname": "男鞋专区",
                  "commendSkuId": 43139143227,
                  "imgPath": "http://m.360buyimg.com/n1/jfs/t1/94764/17/38453/168977/646c267cF71245dd9/c261623a4436c3e1.jpg"
                },
                {
                  "cid": 4537289,
                  "cname": "男装专区",
                  "commendSkuId": 71829264288,
                  "imgPath": "http://m.360buyimg.com/n1/jfs/t1/278596/22/361/39840/67ce6fcaF9afd4cbb/956d2fe1d21a1352.jpg"
                },
                {
                  "cid": 4537294,
                  "cname": "配件专区",
                  "commendSkuId": 10089275357882,
                  "imgPath": "http://m.360buyimg.com/n1/jfs/t1/236610/24/28044/161262/6707a1a4Faca8c04b/b243208e07ee95d2.jpg"
                },
                {
                  "cid": 4537286,
                  "cname": "女鞋专区",
                  "commendSkuId": 10063621870090,
                  "imgPath": "http://m.360buyimg.com/n1/jfs/t1/256063/23/20649/199158/67b5a641F06b177a3/d85e475894d16920.jpg"
                }
              ],
              "hotcatestr": "安踏官方专卖店,正品保证",
              "isFocusShop": false,
              "isSquareLogo": true,
              "logisticsGrade": "高",
              "logisticsScore": "4.9",
              "logisticsText": "物流",
              "logisticsTxt": "物流",
              "logo": "http://img30.360buyimg.com/popshop/jfs/t1/184672/1/31482/2387/6391419eE1a9381f8/5031603fd7562ca5.jpg",
              "name": "安踏悠购专卖店",
              "nameB": "安踏悠购专卖店",
              "newNum": 0,
              "promotionNum": 0,
              "promotions": [
                {
                  "name": "券满99减30",
                  "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"213251\",\"venderId\":\"221247\",\"shopName\":\"安踏悠购专卖店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/184672/1/31482/2387/6391419eE1a9381f8/5031603fd7562ca5.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/134538/37/19246/68989/5fd2d8d0E9c859513/5289203f329aae54.jpg\",\"activityTabInfo\":{\"sort\":\"couponInfos\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                },
                {
                  "name": "满60减10元",
                  "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"213251\",\"venderId\":\"221247\",\"shopName\":\"安踏悠购专卖店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/184672/1/31482/2387/6391419eE1a9381f8/5031603fd7562ca5.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/134538/37/19246/68989/5fd2d8d0E9c859513/5289203f329aae54.jpg\",\"activityTabInfo\":{\"promotionTitleId\":\"268025991128\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                },
                {
                  "name": "满60减30元",
                  "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"213251\",\"venderId\":\"221247\",\"shopName\":\"安踏悠购专卖店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/184672/1/31482/2387/6391419eE1a9381f8/5031603fd7562ca5.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/134538/37/19246/68989/5fd2d8d0E9c859513/5289203f329aae54.jpg\",\"activityTabInfo\":{\"promotionTitleId\":\"286606151706\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                },
                {
                  "name": "满80减20元",
                  "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"213251\",\"venderId\":\"221247\",\"shopName\":\"安踏悠购专卖店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/184672/1/31482/2387/6391419eE1a9381f8/5031603fd7562ca5.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/134538/37/19246/68989/5fd2d8d0E9c859513/5289203f329aae54.jpg\",\"activityTabInfo\":{\"promotionTitleId\":\"286603958709\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                }
              ],
              "score": 0,
              "scoreRankRateGrade": "4.6",
              "scoreText": "综合评分",
              "serverText": "服务",
              "shopActivityTotalNum": 0,
              "shopId": "213251",
              "shopStarTxt": "店铺星级",
              "shopStateText": "店铺动态",
              "signboardUrl": "http://img10.360buyimg.com/cms/jfs/t1/134538/37/19246/68989/5fd2d8d0E9c859513/5289203f329aae54.jpg",
              "skuCntText": "全部商品",
              "skuText": "商品",
              "squareLogo": "http://img30.360buyimg.com/popshop/jfs/t1/210451/40/28348/7177/6391419eE7387e167/6a3681e4f96e2fc4.jpg",
              "totalNum": 1352,
              "venderId": "221247",
              "venderType": "0"
            }
          },
          "stockParam": {
            "dcId": -1,
            "sId": -1
          },
          "wareImage": [
            {
              "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/229337/37/10684/149167/65b9de38F890290bc/0e3cac8acb2252f7.jpg!q70.jpg",
              "share": "http://m.360buyimg.com/mobilecms/s120x120_jfs/t1/229337/37/10684/149167/65b9de38F890290bc/0e3cac8acb2252f7.jpg!q70.jpg",
              "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/229337/37/10684/149167/65b9de38F890290bc/0e3cac8acb2252f7.jpg!q70.jpg"
            },
            {
              "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/246624/40/4294/144261/65b9de38F8605e393/9e31c475221389f1.jpg!q70.jpg",
              "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/246624/40/4294/144261/65b9de38F8605e393/9e31c475221389f1.jpg!q70.jpg"
            },
            {
              "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/244484/18/4325/152387/65b9de59Fe0dec27c/a4ad9b81edfd5d89.jpg!q70.jpg",
              "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/244484/18/4325/152387/65b9de59Fe0dec27c/a4ad9b81edfd5d89.jpg!q70.jpg"
            },
            {
              "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/101532/14/47402/96155/65b9de59Fea23dcaf/4222f6dab7d3df10.jpg!q70.jpg",
              "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/101532/14/47402/96155/65b9de59Fea23dcaf/4222f6dab7d3df10.jpg!q70.jpg"
            },
            {
              "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/113440/24/41437/83913/65b9de58F43b75c9b/ecb51171ec300ffb.jpg!q70.jpg",
              "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/113440/24/41437/83913/65b9de58F43b75c9b/ecb51171ec300ffb.jpg!q70.jpg"
            },
            {
              "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/88570/36/38348/109382/65b9de58F97688cdf/dbd2d7360c49bd22.jpg!q70.jpg",
              "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/88570/36/38348/109382/65b9de58F97688cdf/dbd2d7360c49bd22.jpg!q70.jpg"
            },
            {
              "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/112004/23/38495/120350/65b9de58Fc0190eb8/33c9537c1cc86f7a.jpg!q70.jpg",
              "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/112004/23/38495/120350/65b9de58Fc0190eb8/33c9537c1cc86f7a.jpg!q70.jpg"
            },
            {
              "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/244908/29/4237/69649/65b9de57Ff52bb63e/6c3d99884b3842b2.jpg!q70.jpg",
              "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/244908/29/4237/69649/65b9de57Ff52bb63e/6c3d99884b3842b2.jpg!q70.jpg"
            },
            {
              "big": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/138642/2/33034/61823/63b8cd48Fe08f3d25/57e6623ae31713ac.jpg!q70.jpg",
              "small": "http://m.360buyimg.com/mobilecms/s480x480_jfs/t1/138642/2/33034/61823/63b8cd48Fe08f3d25/57e6623ae31713ac.jpg!q70.jpg"
            }
          ],
          "wareInfo": {
            "class": "com.jd.ware.view.export.dto.common.bean.WareInfo",
            "name": "安踏男鞋休闲运动鞋新款网面透气板鞋跑步鞋子男户外训练体测鞋 -7二度灰/安踏白 42",
            "skuId": "10335871600",
            "venderId": "221247"
          },
          "yanBaoInfo": [],
          "yuyueInfo": {
            "isYuYue": false,
            "isbuyTime": false,
            "plusType": 0,
            "yuyueNum": 0
          }
        },
        "_ddf": "szx"
      },
      "format_check": "ok"
    },
    "error": "",
    "secache": "a31a49f6b170508f8536649bb4de6924",
    "secache_time": 1742982825,
    "secache_date": "2025-03-26 17:53:45",
    "reason": "",
    "error_code": "0000",
    "cache": 0,
    "api_info": "today:31 max:5000 all[66=31+27+8];expires:2025-12-31",
    "execution_time": "0.887",
    "server_time": "Beijing/2025-03-26 17:53:45",
    "client_ip": "115.153.49.207",
    "call_args": {
      "num_iid": "10335871600"
    },
    "api_type": "jd",
    "translate_language": "zh-CN",
    "translate_engine": "baidu",
    "server_memory": "3.69MB",
    "request_id": "1.67e3cea848c9f",
    "last_id": "4215616714"
  }
异常示例
{
		"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-11 17:30:00",
		"call_args": [],
		"api_type": "jd",
		"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:271449542271449542(微信同号)