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

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

onebound.jd.item_get_app

公共参数

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

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

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/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.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.onebound.cn/";
$obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
$obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
$obapi->api_key = "<您自己的apiKey>";
$obapi->api_secret = "<您自己的apiSecret>";
$obapi->api_version ="";
$obapi->secache_path ="runtime/";
$obapi->secache_time ="86400";
$obapi->cache = true;

$api_data = $obapi->exec(
                array(
	                "api_type" =>"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.onebound.cn/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.onebound.cn/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.onebound.cn/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.onebound.cn/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.onebound.cn/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.onebound.cn", // 
    api_key: "<您自己的apiKey>", // 必填,
    api_secret: "<您自己的apiSecret>", //
    lang: "cn", // 
    timestamp: "", // 必填,生成签名的时间戳
    nonceStr: "", // 必填,生成签名的随机串
    signature: "",// 必填,签名
    jsApiList: [] // 必填,需要使用的JS接口列表
});
</script>
<div id="api_data_box"></div>
<script type="text/javascript">
obAPI.exec(
     {
     "api_type":"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.onebound.cn/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.onebound.cn/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.onebound.cn/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.onebound.cn/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.onebound.cn/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.onebound.cn/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.onebound.cn/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.onebound.cn/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": {
        "floors": [
            {
                "bId": "bpconfigCustom_flo_1670",
                "cf": {
                    "bgc": "#ffffff",
                    "space": "0",
                    "spl": "empty"
                },
                "data": {
                    "videoControl": {
                        "optimize": true,
                        "autoPlay": false
                    }
                },
                "floorId": "flo_1670",
                "isInventedFloor": 0,
                "mId": "bpMainImage",
                "mainFloor": 0,
                "sonsType": 0,
                "sortId": 1
            },
            {
                "bId": "bpconfigCustom_flo_1676",
                "cf": {
                    "bgc": "#ffffff",
                    "space": "0",
                    "spl": "empty"
                },
                "data": {
                    "priceInfo": {
                        "mprice": {
                            "display": true,
                            "name": "参考价:",
                            "value": "109.00"
                        },
                        "priceType": 0,
                        "discount": {
                            "display": true
                        },
                        "jprice": {
                            "display": true,
                            "name": "京东价:",
                            "value": "79.00"
                        }
                    },
                    "secondPositionPrice": {
                        "value": "99.00"
                    },
                    "mainPositionPrice": {
                        "value": "79.00"
                    }
                },
                "floorId": "flo_1676",
                "isInventedFloor": 0,
                "mId": "bpJPrice",
                "mainFloor": 0,
                "sonsType": 0,
                "sortId": 4
            },
            {
                "bId": "bpconfigCustom_flo_1677",
                "cf": {
                    "bgc": "#ffffff",
                    "space": "0",
                    "spl": "empty"
                },
                "data": {
                    "discountPriceInfo": [

                    ]
                },
                "floorId": "flo_1677",
                "isInventedFloor": 0,
                "mId": "bpDeprecated",
                "mainFloor": 0,
                "sonsType": 0,
                "sortId": 5
            },
            {
                "bId": "bpconfigCustom_flo_1678",
                "cf": {
                    "bgc": "#ffffff",
                    "space": "0",
                    "spl": "empty"
                },
                "data": {
                    "showAttention": false,
                    "imgToWareName": [
                        "tab_054"
                    ]
                },
                "floorId": "flo_1678",
                "isInventedFloor": 0,
                "mId": "bpName",
                "mainFloor": 0,
                "sonsType": 0,
                "sortId": 6
            },
            {
                "bId": "bpConfig_flo_1689",
                "cf": {
                    "bgc": "#ffffff",
                    "space": "0",
                    "spl": "empty"
                },
                "data": {
                    "ad": {
                        "adword": "【自营正品】15m/s强劲风力,快干不伤发;小巧可折叠,轻巧好收纳;5000万负离子;多种吹发模式,两档风温模式,即刻切换;双重过热保护,使用更安全。",
                        "color": "#f23030",
                        "adLink": "",
                        "textColor": "#8c8c8c",
                        "adLinkContent": ""
                    }
                },
                "floorId": "flo_1689",
                "mId": "bpConfig",
                "mainFloor": 0,
                "sonsType": 0,
                "sortId": 7,
                "styleId": "style_112",
                "styleVersion": "1.0"
            },
            {
                "bId": "bpconfigCustom_flo_1702",
                "cf": {
                    "bgc": "#ffffff",
                    "space": "0",
                    "spl": "grey_strip"
                },
                "data": {
                    "promotion": {
                        "gift": [

                        ],
                        "proFlagList": [

                        ],
                        "normalMark": "tab_var_071",
                        "plusMark": "tab_var_124",
                        "activity": [
                            {
                                "activityId": "92975",
                                "proSortNum": 13,
                                "link": "https://pro.m.jd.com/mall/active/3XzR8AdTaWfRyVu4K3ypRQxJPQPs/index.html?babelChannel=ttt2",
                                "text": "满额返券",
                                "promoId": "",
                                "businessType": "8",
                                "value": "实付满1元,确认收货后,返满1打9折券,先到先得",
                                "skuId": ""
                            }
                        ],
                        "isBargain": false,
                        "tip": "",
                        "attach": [

                        ],
                        "prompt": "",
                        "tips": [

                        ],
                        "activityTypes": [

                        ]
                    }
                },
                "floorId": "flo_1702",
                "isInventedFloor": 0,
                "mId": "bpPreference",
                "mainFloor": 0,
                "sonsType": 0,
                "sortId": 8
            },
            {
                "bId": "bpconfigCustom_flo_1683",
                "cf": {
                    "bgc": "#ffffff",
                    "space": "0",
                    "spl": "grey_strip"
                },
                "data": {
                    "selected": ""
                },
                "floorId": "flo_1683",
                "isInventedFloor": 0,
                "mId": "bpChoice",
                "mainFloor": 0,
                "sonsType": 0,
                "sortId": 9
            },
            {
                "bId": "bpconfigCustom_flo_1684",
                "cf": {
                    "bgc": "#ffffff",
                    "space": "0",
                    "spl": "white_line_L"
                },
                "data": {
                    "stockState": 33,
                    "addressStock": {
                        "stockDesc": ""
                    },
                    "weightInfo": {
                        "title": "重量",
                        "content": "0.53kg"
                    },
                    "defaultAddr": {
                        "townName": "",
                        "cityName": "朝阳区",
                        "countyId": "2799",
                        "provinceName": "北京",
                        "cityId": "72",
                        "townId": "0",
                        "provinceId": "1",
                        "countyName": "三环以内"
                    },
                    "shippingAddress": "北京 朝阳区 三环以内 ",
                    "stock": "现货",
                    "stateStockId": 305,
                    "stockDcId": 6
                },
                "floorId": "flo_1684",
                "isInventedFloor": 0,
                "mId": "bpAddr",
                "mainFloor": 0,
                "sonsType": 0,
                "sortId": 10
            },
            {
                "bId": "bpconfigCustom_flo_1700",
                "cf": {
                    "bgc": "#ffffff",
                    "space": "0",
                    "spl": "grey_strip"
                },
                "data": {
                    "shopInfo": {
                        "followCount": 117012133,
                        "venderId": "1000004123",
                        "isSquareLogo": true,
                        "score": 0,
                        "giftIcon": "",
                        "followText": "关注人数",
                        "hasCoupon": false,
                        "logo": "http://img30.360buyimg.com/popshop/jfs/t1/14105/5/16943/9132/62a2aac3Eb89f4984/a74d04a7b0bea54a.jpg",
                        "skuCntText": "全部商品",
                        "shopId": 1000004123,
                        "promotionNum": 0,
                        "brief": "官方授权手机/电视/笔记本/小家电/智能",
                        "shopImage": "http://img14.360buyimg.com/cms/jfs/t1/192942/27/46356/50236/6662b96aF052868fc/9d3fb5f041bd9bf6.jpg",
                        "cardType": 3,
                        "isFocusShop": false,
                        "goodShop": 0,
                        "nameB": "小米京东自营旗舰店",
                        "logisticsText": "物流",
                        "skuText": "商品",
                        "diamond": false,
                        "promotions": [
                            {
                                "name": "限时秒杀",
                                "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"1000004123\",\"venderId\":\"1000004123\",\"shopName\":\"小米京东自营旗舰店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/14105/5/16943/9132/62a2aac3Eb89f4984/a74d04a7b0bea54a.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/54183/9/11916/32957/5d8ad3daE5d454624/196d4b0145ca2ba7.jpg\",\"activityTabInfo\":{\"sort\":\"secKillPage\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                            },
                            {
                                "name": "满59减9元",
                                "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"1000004123\",\"venderId\":\"1000004123\",\"shopName\":\"小米京东自营旗舰店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/14105/5/16943/9132/62a2aac3Eb89f4984/a74d04a7b0bea54a.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/54183/9/11916/32957/5d8ad3daE5d454624/196d4b0145ca2ba7.jpg\",\"activityTabInfo\":{\"promotionTitleId\":\"271243831585\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                            },
                            {
                                "name": "每满78减19元",
                                "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"1000004123\",\"venderId\":\"1000004123\",\"shopName\":\"小米京东自营旗舰店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/14105/5/16943/9132/62a2aac3Eb89f4984/a74d04a7b0bea54a.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/54183/9/11916/32957/5d8ad3daE5d454624/196d4b0145ca2ba7.jpg\",\"activityTabInfo\":{\"promotionTitleId\":\"271308750050\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                            },
                            {
                                "name": "每满99减20元",
                                "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"1000004123\",\"venderId\":\"1000004123\",\"shopName\":\"小米京东自营旗舰店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/14105/5/16943/9132/62a2aac3Eb89f4984/a74d04a7b0bea54a.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/54183/9/11916/32957/5d8ad3daE5d454624/196d4b0145ca2ba7.jpg\",\"activityTabInfo\":{\"promotionTitleId\":\"259207666419\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                            }
                        ],
                        "totalNum": 2858,
                        "signboardUrl": "http://img10.360buyimg.com/cms/jfs/t1/54183/9/11916/32957/5d8ad3daE5d454624/196d4b0145ca2ba7.jpg",
                        "hotcates": [
                            {
                                "imgPath": "http://m.360buyimg.com/n1/jfs/t1/238805/24/22363/47355/674a90d6Ff24eae36/c96b6539bbc2151b.jpg",
                                "cname": "小米手机",
                                "commendSkuId": 100149708958,
                                "cid": 15158620
                            },
                            {
                                "imgPath": "http://m.360buyimg.com/n1/jfs/t1/247608/13/26650/63754/674b2eeeFf6a837aa/7dd79ecda515fdbc.jpg",
                                "cname": "REDMI手机",
                                "commendSkuId": 100119685901,
                                "cid": 13949247
                            },
                            {
                                "imgPath": "http://m.360buyimg.com/n1/jfs/t1/190875/8/54110/107538/674c3e6eF9dffe40d/17051b11cf8cdc52.jpg",
                                "cname": "电视/投影",
                                "commendSkuId": 100118965875,
                                "cid": 2933453
                            },
                            {
                                "imgPath": "http://m.360buyimg.com/n1/jfs/t1/228914/24/29376/88389/674edbb5F67e73513/4c1198219537547c.jpg",
                                "cname": "空调专区",
                                "commendSkuId": 100103181990,
                                "cid": 16016836
                            }
                        ],
                        "shopStateText": "店铺动态",
                        "name": "小米京东自营旗舰店",
                        "shopActivityTotalNum": 0,
                        "cateGoodShop": 0,
                        "serverText": "服务",
                        "squareLogo": "http://img30.360buyimg.com/popshop/jfs/t1/117618/20/26101/23875/62a2aac3Ea05e3885/84ef55eff3dc5e5d.jpg",
                        "newNum": 0,
                        "venderType": "1",
                        "hotcatestr": "官方授权手机/电视/笔记本/小家电/智能"
                    }
                },
                "floorId": "flo_1700",
                "isInventedFloor": 0,
                "mId": "bpNewShop",
                "mainFloor": 0,
                "sonsType": 0,
                "sortId": 12
            },
            {
                "bId": "bpconfigCustom_flo_617",
                "cf": {
                    "bgc": "#ffffff",
                    "space": "0",
                    "spl": "grey_strip"
                },
                "data": {
                    "productcomments": {
                        "commentVideoInfoList": [

                        ],
                        "allCnt": "100万+",
                        "goodRate": "99%",
                        "badCnt": "700+",
                        "commentInfoList": [
                            {
                                "commentInfo": {
                                    "isShowUserLevel": "0",
                                    "pictureInfoList": [
                                        {
                                            "picWidth": "720",
                                            "videoPlayAddress": "https://jvod.300hu.com/vod/product/2c8710d8-0a88-4b30-a62f-69dd77c346ac/ec9e43db1bcd474a8ea4d2b393d3f827.mp4?info=45329-1074795-h264-aac",
                                            "picURL": "https://jvod.300hu.com/img/2024/571120212/1/img5.jpg",
                                            "picHeight": "1280",
                                            "mediaLength": "13",
                                            "mediaType": "2",
                                            "mediaId": "1455858159"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/163282/25/26855/55220/6667c205F059b2e32/65161779c6b350e3.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/163282/25/26855/55220/6667c205F059b2e32/65161779c6b350e3.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/235066/7/20303/112990/6667c205Fca6c2131/9b43996a845d19cd.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/235066/7/20303/112990/6667c205Fca6c2131/9b43996a845d19cd.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/90241/13/46395/52310/6667c205F30712369/e04f0a8bd118e567.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/90241/13/46395/52310/6667c205F30712369/e04f0a8bd118e567.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/193686/7/46242/68063/6667c205Fc7e84361/b90ba6a49717f94c.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/193686/7/46242/68063/6667c205Fc7e84361/b90ba6a49717f94c.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/248700/30/11330/80743/6667c205F4790e7ce/fd504b1e19ab100a.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/248700/30/11330/80743/6667c205F4790e7ce/fd504b1e19ab100a.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/166576/9/46391/124411/6667c205F16464cd4/8e257e0779a96b84.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/166576/9/46391/124411/6667c205F16464cd4/8e257e0779a96b84.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/229662/11/17781/83622/6667c206F658f1ce3/22606fc0814b60cb.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/229662/11/17781/83622/6667c206F658f1ce3/22606fc0814b60cb.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/230354/20/20502/81973/6667c205F721027b5/27de9e8684fbd3bc.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/230354/20/20502/81973/6667c205F721027b5/27de9e8684fbd3bc.jpg.dpg",
                                            "mediaType": "1"
                                        }
                                    ],
                                    "commentScore": "5",
                                    "plusLogoType": "",
                                    "markingList": [

                                    ],
                                    "commentType": "1",
                                    "userNickName": "一***凉",
                                    "haveLiked": "0",
                                    "wareAttribute": [
                                        {
                                            "颜色": "【折叠升级款】-H101 白色"
                                        }
                                    ],
                                    "isShowPlusPendant": "1",
                                    "praiseCnt": "3",
                                    "ckeKeyWordBury": "",
                                    "plusAddress": "https://plus.m.jd.com/index",
                                    "commentData": "收到货非常满意,风很大,手感很好,尺寸也刚刚好,推荐购买颜值很高\n重量合适,两个档位。大风,小风,热风冷风都有小米家的牌子就是好用,这款颜值太漂亮了,白色好看同事都问我要链接呢,又不贵,物美价廉下次再准备买一个在老家用粉色也很好看,风很大一会儿就吹干了",
                                    "plusLogoId": "",
                                    "plusAvailable": "0",
                                    "maidianInfo": "",
                                    "noCommentMessage": "用户未及时作出评价哦~",
                                    "commentDate": "2024-06-11 11:18:30",
                                    "afterComment": [

                                    ],
                                    "commentId": "20921053089",
                                    "guid": "135d4acdf225acdd9f82d7e425f93172",
                                    "testId": "A",
                                    "userImgURL": "https://storage.360buyimg.com/i.imageUpload/6a645f3632393433663663393535313531363736373833353337383538_sma.jpg",
                                    "replyCnt": "6"
                                }
                            },
                            {
                                "commentInfo": {
                                    "isShowUserLevel": "0",
                                    "pictureInfoList": [
                                        {
                                            "picWidth": "720",
                                            "videoPlayAddress": "https://jvod.300hu.com/vod/product/c2b23f80-9834-4991-b1fc-926730fb1b6d/f7fd95f8b81342be9a89f583579af8f6.mp4?info=36019-999276-h264-aac",
                                            "picURL": "https://jvod.300hu.com/img/2024/637605680/1/img3.jpg",
                                            "picHeight": "1600",
                                            "mediaLength": "7",
                                            "mediaType": "2",
                                            "mediaId": "1550652691"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/24739/9/21540/113727/66aa858dFc351e43a/b3e4e65ca7c71827.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/24739/9/21540/113727/66aa858dFc351e43a/b3e4e65ca7c71827.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/53592/31/25120/88626/66aa858eF9bd91421/bc3017bdbf3bd2d8.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/53592/31/25120/88626/66aa858eF9bd91421/bc3017bdbf3bd2d8.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/54278/29/25178/129465/66aa858fF85b318d1/f8e199f76e957f23.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/54278/29/25178/129465/66aa858fF85b318d1/f8e199f76e957f23.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/245417/36/16391/146630/66aa8590Fa4327657/116a8d8e82177df1.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/245417/36/16391/146630/66aa8590Fa4327657/116a8d8e82177df1.jpg.dpg",
                                            "mediaType": "1"
                                        }
                                    ],
                                    "commentScore": "5",
                                    "plusLogoType": "2",
                                    "markingList": [

                                    ],
                                    "commentType": "1",
                                    "userNickName": "孤***丶",
                                    "haveLiked": "0",
                                    "wareAttribute": [
                                        {
                                            "颜色": "【折叠升级款】-H101 白色"
                                        }
                                    ],
                                    "isShowPlusPendant": "1",
                                    "praiseCnt": "0",
                                    "ckeKeyWordBury": "",
                                    "plusAddress": "https://plus.m.jd.com/index",
                                    "commentData": "产品质量/服务体验:\n\n商品/服务的质量非常出色,完全符合我的期望。无论是材质、做工还是性能,都达到了很高的标准。\n使用/体验过程中,感受到了专业与贴心的服务,无论是咨询、购买还是售后,都得到了及时且有效的解决。\n外观与设计:\n\n商品的外观设计简约而不失优雅,非常符合我的审美。细节处理得当,展现了高品质的追求。\n服务界面友好,操作简便,使得整个使用过程非常愉悦。\n性价比:\n\n考虑到商品的质量、性能以及服务,这个价格是非常合理的,物超所值。\n相比于其他品牌或同类产品,此商品/服务的性价比明显更高,是一个值得推荐的选择。\n个人感受与推荐:\n\n我非常满意这次购物/体验,不仅是因为商品本身,还有那份被重视和尊重的感觉。\n强烈推荐给大家,无论是自用还是作为礼物,都是一个非常好的选择。\n总结:\n\n总的来说,这是一次非常满意的购物/体验,无论是从质量、服务还是价值上,都给了我超出预期的满足。\n我会毫不犹豫地再次选择这个品牌/服务,并会向朋友和家人推荐。",
                                    "plusLogoId": "tab_gif_085",
                                    "plusAvailable": "201",
                                    "maidianInfo": "",
                                    "noCommentMessage": "用户未及时作出评价哦~",
                                    "commentDate": "2024-08-01 02:42:25",
                                    "afterComment": [

                                    ],
                                    "commentId": "21127408744",
                                    "guid": "4ddfd793d3e0fd8465eb346448face60",
                                    "testId": "A",
                                    "userImgURL": "https://storage.360buyimg.com/i.imageUpload/6a645f3532643865303031623136313631353535373734393632363138_sma.jpg",
                                    "replyCnt": "0"
                                }
                            },
                            {
                                "commentInfo": {
                                    "isShowUserLevel": "0",
                                    "pictureInfoList": [
                                        {
                                            "picWidth": "608",
                                            "videoPlayAddress": "https://jvod.300hu.com/vod/product/c6d2e1fa-cf90-443f-be11-3722b010f731/3197073dcd9843b3afb333028325e7f5.mp4?info=34719-1055337-h264-aac",
                                            "picURL": "https://jvod.300hu.com/img/2024/746170601/1/img7.jpg",
                                            "picHeight": "1080",
                                            "mediaLength": "15",
                                            "mediaType": "2",
                                            "mediaId": "1822772707"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/167021/28/50775/36597/6728345aFfdb34989/4430fcaac31a58f9.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/167021/28/50775/36597/6728345aFfdb34989/4430fcaac31a58f9.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/218691/39/46524/45521/6728345aF0935701a/8f1e3fd742ba8f2b.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/218691/39/46524/45521/6728345aF0935701a/8f1e3fd742ba8f2b.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/184152/12/51008/70474/6728345bF0312104c/58e6b2a4f3ace5d6.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/184152/12/51008/70474/6728345bF0312104c/58e6b2a4f3ace5d6.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/176966/2/51030/2301587/6728345bF87ec93af/091ab57bb9c99967.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/176966/2/51030/2301587/6728345bF87ec93af/091ab57bb9c99967.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/206775/14/47157/4138503/6728345cFc4aba313/c1096168d73c3ffa.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/206775/14/47157/4138503/6728345cFc4aba313/c1096168d73c3ffa.jpg.dpg",
                                            "mediaType": "1"
                                        },
                                        {
                                            "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/175573/6/50807/9800/6728345cF69ff2ce6/88842b5f3f35c671.jpg.dpg",
                                            "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/175573/6/50807/9800/6728345cF69ff2ce6/88842b5f3f35c671.jpg.dpg",
                                            "mediaType": "1"
                                        }
                                    ],
                                    "commentScore": "5",
                                    "plusLogoType": "",
                                    "markingList": [

                                    ],
                                    "commentType": "1",
                                    "userNickName": "聪***聪",
                                    "haveLiked": "0",
                                    "wareAttribute": [
                                        {
                                            "颜色": "【折叠升级款】-H101 白色"
                                        }
                                    ],
                                    "isShowPlusPendant": "1",
                                    "praiseCnt": "0",
                                    "ckeKeyWordBury": "",
                                    "plusAddress": "https://plus.m.jd.com/index",
                                    "commentData": "外观外形:超级好👍🏻,很漂亮是我想要的\n吹干效果:我头发长用的强风挡,没5分钟就可以吹干,避免了长时间吹发让头发发干\n产品重量:产品重量:重量很,外出轻便于携带   很方便买东西就选京东自营店,质量品质有保障,价格实惠,物流给力,快递小哥服务超级好棒👍🏻👍🏻",
                                    "plusLogoId": "",
                                    "plusAvailable": "0",
                                    "maidianInfo": "",
                                    "noCommentMessage": "用户未及时作出评价哦~",
                                    "commentDate": "2024-11-04 10:41:33",
                                    "afterComment": [

                                    ],
                                    "commentId": "21697680419",
                                    "guid": "dc2e0efec4daa4c10eae8611db87ce93",
                                    "testId": "A",
                                    "userImgURL": "https://storage.360buyimg.com/i.imageUpload/b4cfc3f7b5c4d2cbb4cf31343637313237353439323639_sma.jpg",
                                    "replyCnt": "0"
                                }
                            }
                        ],
                        "videoAutoPlaySwitch": "1",
                        "allCntStr": "100万+",
                        "semanticTagList": [
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=e828353c64423e7b^^pid=30016^^sku=100042959971^^sversion=1000^^token=39fabcda73d1443e",
                                "tagId": "e828353c64423e7b",
                                "canBeFiltered": true,
                                "count": "3309",
                                "name": "风大马力足",
                                "id": "e828353c64423e7b",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=8612e5e4e7fcc401^^pid=30016^^sku=100042959971^^sversion=1000^^token=71dfb9b0ad718cd4",
                                "tagId": "8612e5e4e7fcc401",
                                "canBeFiltered": true,
                                "count": "1709",
                                "name": "方便携带",
                                "id": "8612e5e4e7fcc401",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=096fe6a400c7dcba^^pid=30016^^sku=100042959971^^sversion=1000^^token=b5f3bcb190000272",
                                "tagId": "096fe6a400c7dcba",
                                "canBeFiltered": true,
                                "count": "1436",
                                "name": "非常好用",
                                "id": "096fe6a400c7dcba",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=8423dd3a21a6433f^^pid=30016^^sku=100042959971^^sversion=1000^^token=a68f231e4bc5e636",
                                "tagId": "8423dd3a21a6433f",
                                "canBeFiltered": true,
                                "count": "1396",
                                "name": "外观漂亮",
                                "id": "8423dd3a21a6433f",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=16401ed6b318dae0^^pid=30016^^sku=100042959971^^sversion=1000^^token=3106137e1d9115e2",
                                "tagId": "16401ed6b318dae0",
                                "canBeFiltered": true,
                                "count": "833",
                                "name": "美观大方",
                                "id": "16401ed6b318dae0",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=dbf63ab4e9199946^^pid=30016^^sku=100042959971^^sversion=1000^^token=b76b065e8c52e7a2",
                                "tagId": "dbf63ab4e9199946",
                                "canBeFiltered": true,
                                "count": "573",
                                "name": "携带方便",
                                "id": "dbf63ab4e9199946",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=06c348f977035a5f^^pid=30016^^sku=100042959971^^sversion=1000^^token=d8c3878bf68c9ded",
                                "tagId": "06c348f977035a5f",
                                "canBeFiltered": true,
                                "count": "256",
                                "name": "不占空间",
                                "id": "06c348f977035a5f",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=bd42d9f9a6a61958^^pid=30016^^sku=100042959971^^sversion=1000^^token=f0c68e6d8794a07d",
                                "tagId": "bd42d9f9a6a61958",
                                "canBeFiltered": true,
                                "count": "252",
                                "name": "噪音很小",
                                "id": "bd42d9f9a6a61958",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=cdf00ec76a6a9ac8^^pid=30016^^sku=100042959971^^sversion=1000^^token=551bbd1f12dacbb8",
                                "tagId": "cdf00ec76a6a9ac8",
                                "canBeFiltered": true,
                                "count": "225",
                                "name": "使用舒适",
                                "id": "cdf00ec76a6a9ac8",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=ec6043a7e1042e2f^^pid=30016^^sku=100042959971^^sversion=1000^^token=610abae1c1f5e38c",
                                "tagId": "ec6043a7e1042e2f",
                                "canBeFiltered": true,
                                "count": "167",
                                "name": "出行必备",
                                "id": "ec6043a7e1042e2f",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=989f637c931891a9^^pid=30016^^sku=100042959971^^sversion=1000^^token=a477ad52f5d7bc55",
                                "tagId": "989f637c931891a9",
                                "canBeFiltered": true,
                                "count": "145",
                                "name": "反应迅速",
                                "id": "989f637c931891a9",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=961502f9e69427c4^^pid=30016^^sku=100042959971^^sversion=1000^^token=643ba20493102c4a",
                                "tagId": "961502f9e69427c4",
                                "canBeFiltered": true,
                                "count": "47",
                                "name": "省时便捷",
                                "id": "961502f9e69427c4",
                                "stand": "1",
                                "type": "4"
                            },
                            {
                                "ckeKeyWordBury": "eid=100^^tagid=0b857d33300feafa^^pid=30016^^sku=100042959971^^sversion=1000^^token=6e727163ed42dbe9",
                                "tagId": "0b857d33300feafa",
                                "canBeFiltered": true,
                                "count": "21",
                                "name": "安装便捷",
                                "id": "0b857d33300feafa",
                                "stand": "1",
                                "type": "4"
                            }
                        ],
                        "isAllDefaultGoodComment": true,
                        "showPicCnt": "500",
                        "commentTitle": "评价",
                        "isShowYoutuShaituBtn": "1",
                        "goodCnt": "12万+",
                        "testId": "A",
                        "normalCnt": "1100+",
                        "pictureCnt": "500",
                        "commentButtonText": "查看全部评价",
                        "maxPage": 100,
                        "defaultGoodLogo": "https://m.360buyimg.com/mobilecms/jfs/t10447/176/1359340654/2177/9ceed2ba/59df1d27N55b368df.png",
                        "defaultGoodCountText": "MTAw5LiHK+S4queUqOaIt+m7mOiupOivhOS7t+S6huivpeWVhuWTgQ=="
                    }
                },
                "floorId": "flo_617",
                "isInventedFloor": 0,
                "mId": "bpComment",
                "mainFloor": 0,
                "sonsType": 0,
                "sortId": 13
            }
        ],
        "others": {
            "stockParam": {
                "dcId": 6,
                "sId": 305
            },
            "adWordText": "【自营正品】15m/s强劲风力,快干不伤发;小巧可折叠,轻巧好收纳;5000万负离子;多种吹发模式,两档风温模式,即刻切换;双重过热保护,使用更安全。",
            "abTestInfo": {
                "shopCardTypeAb": true,
                "skuSource": 0,
                "showBuyLayer": true,
                "shopABTest": "a",
                "recommendYhTag": false,
                "feedBackAB": true,
                "collectABInfo": {
                    "bottom4ABTest": true,
                    "titleABTest": true,
                    "bottom3ABTest": true
                },
                "ShopIntensifyAB": false,
                "hospitalAB": "A",
                "shopExtendsAb": true,
                "packABTest": 1
            },
            "colorSizeInfo": {
                "colorSize": [
                    {
                        "dimensionNumber": 1,
                        "buttons": [
                            {
                                "no": "1",
                                "skuList": [
                                    "100042959971"
                                ],
                                "skuState": -1,
                                "canSelected": true,
                                "text": "【折叠升级款】-H101 白色"
                            },
                            {
                                "no": "2",
                                "skuList": [
                                    "100042959915"
                                ],
                                "skuState": -1,
                                "canSelected": true,
                                "text": "【折叠升级款】-H101 粉色"
                            }
                        ],
                        "title": "款式"
                    }
                ],
                "colorSizeTips": "#与其他已选项无法组成可售商品,请重选"
            },
            "shopInfo": {
                "shopTag": {
                    "tagIcon": "tab_054",
                    "shopMark": "zy",
                    "priority": 1
                },
                "shop": {
                    "followCount": 117012133,
                    "venderId": "1000004123",
                    "isSquareLogo": true,
                    "score": 0,
                    "giftIcon": "",
                    "followText": "关注人数",
                    "hasCoupon": false,
                    "logo": "http://img30.360buyimg.com/popshop/jfs/t1/14105/5/16943/9132/62a2aac3Eb89f4984/a74d04a7b0bea54a.jpg",
                    "skuCntText": "全部商品",
                    "shopId": 1000004123,
                    "promotionNum": 0,
                    "brief": "官方授权手机/电视/笔记本/小家电/智能",
                    "shopImage": "http://img14.360buyimg.com/cms/jfs/t1/192942/27/46356/50236/6662b96aF052868fc/9d3fb5f041bd9bf6.jpg",
                    "cardType": 3,
                    "isFocusShop": false,
                    "goodShop": 0,
                    "nameB": "小米京东自营旗舰店",
                    "logisticsText": "物流",
                    "skuText": "商品",
                    "diamond": false,
                    "promotions": [
                        {
                            "name": "限时秒杀",
                            "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"1000004123\",\"venderId\":\"1000004123\",\"shopName\":\"小米京东自营旗舰店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/14105/5/16943/9132/62a2aac3Eb89f4984/a74d04a7b0bea54a.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/54183/9/11916/32957/5d8ad3daE5d454624/196d4b0145ca2ba7.jpg\",\"activityTabInfo\":{\"sort\":\"secKillPage\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                        },
                        {
                            "name": "满59减9元",
                            "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"1000004123\",\"venderId\":\"1000004123\",\"shopName\":\"小米京东自营旗舰店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/14105/5/16943/9132/62a2aac3Eb89f4984/a74d04a7b0bea54a.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/54183/9/11916/32957/5d8ad3daE5d454624/196d4b0145ca2ba7.jpg\",\"activityTabInfo\":{\"promotionTitleId\":\"271243831585\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                        },
                        {
                            "name": "每满78减19元",
                            "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"1000004123\",\"venderId\":\"1000004123\",\"shopName\":\"小米京东自营旗舰店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/14105/5/16943/9132/62a2aac3Eb89f4984/a74d04a7b0bea54a.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/54183/9/11916/32957/5d8ad3daE5d454624/196d4b0145ca2ba7.jpg\",\"activityTabInfo\":{\"promotionTitleId\":\"271308750050\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                        },
                        {
                            "name": "每满99减20元",
                            "url": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"jumpTab\":\"activity\",\"shopId\":\"1000004123\",\"venderId\":\"1000004123\",\"shopName\":\"小米京东自营旗舰店\",\"logoUrl\":\"http://img30.360buyimg.com/popshop/jfs/t1/14105/5/16943/9132/62a2aac3Eb89f4984/a74d04a7b0bea54a.jpg\",\"signboardUrl\":\"http://img10.360buyimg.com/cms/jfs/t1/54183/9/11916/32957/5d8ad3daE5d454624/196d4b0145ca2ba7.jpg\",\"activityTabInfo\":{\"promotionTitleId\":\"259207666419\"},\"source\":{\"moduleId\":\"app-productDetail\",\"entrance\":\"商详卡片\"}}"
                        }
                    ],
                    "totalNum": 2858,
                    "signboardUrl": "http://img10.360buyimg.com/cms/jfs/t1/54183/9/11916/32957/5d8ad3daE5d454624/196d4b0145ca2ba7.jpg",
                    "hotcates": [
                        {
                            "imgPath": "http://m.360buyimg.com/n1/jfs/t1/238805/24/22363/47355/674a90d6Ff24eae36/c96b6539bbc2151b.jpg",
                            "cname": "小米手机",
                            "commendSkuId": 100149708958,
                            "cid": 15158620
                        },
                        {
                            "imgPath": "http://m.360buyimg.com/n1/jfs/t1/247608/13/26650/63754/674b2eeeFf6a837aa/7dd79ecda515fdbc.jpg",
                            "cname": "REDMI手机",
                            "commendSkuId": 100119685901,
                            "cid": 13949247
                        },
                        {
                            "imgPath": "http://m.360buyimg.com/n1/jfs/t1/190875/8/54110/107538/674c3e6eF9dffe40d/17051b11cf8cdc52.jpg",
                            "cname": "电视/投影",
                            "commendSkuId": 100118965875,
                            "cid": 2933453
                        },
                        {
                            "imgPath": "http://m.360buyimg.com/n1/jfs/t1/228914/24/29376/88389/674edbb5F67e73513/4c1198219537547c.jpg",
                            "cname": "空调专区",
                            "commendSkuId": 100103181990,
                            "cid": 16016836
                        }
                    ],
                    "shopStateText": "店铺动态",
                    "name": "小米京东自营旗舰店",
                    "shopActivityTotalNum": 0,
                    "cateGoodShop": 0,
                    "serverText": "服务",
                    "squareLogo": "http://img30.360buyimg.com/popshop/jfs/t1/117618/20/26101/23875/62a2aac3Ea05e3885/84ef55eff3dc5e5d.jpg",
                    "newNum": 0,
                    "venderType": "1",
                    "hotcatestr": "官方授权手机/电视/笔记本/小家电/智能"
                },
                "customerService": {
                    "hasChat": true,
                    "hasJimi": false,
                    "allGoodJumpUrl": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"shopId\":\"1000004123\",\"venderId\":\"1000004123\",\"jumpTab\":\"allProduct\"}",
                    "mLink": "http://m.jd.com/product/100042959971.html",
                    "online": true,
                    "inShopLookJumpUrl": "openApp.jdMobile://virtual?params={\"category\":\"jump\",\"des\":\"jshopMain\",\"shopId\":\"1000004123\",\"venderId\":\"1000004123\",\"jumpTab\":\"home\"}",
                    "chatInfo": {
                        "isBubble": false,
                        "allGoodIcon": "detail_030",
                        "bottomIcon": "detail_044",
                        "allGoodText": "精选商品",
                        "shopText": "联系客服",
                        "shopIcon": "detail_044",
                        "bottomText": "联系客服"
                    }
                }
            },
            "eventParam": {
                "sepNew": "{\"area\":\"1|72|2799|0\",\"sku\":\"100042959971\",\"stock\":\"现货\"}",
                "sep": "{\"area\":\"1_72_2799_0\",\"sku\":[[\"100042959971\",\"79.00\",\"现货\",\"33\",\"0\"]]}"
            },
            "wareImage": [
                {
                    "small": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/199716/9/49424/102720/674fc3c7F65ab18a3/cb6696dcc27a89bc.jpg!q70.jpg.webp",
                    "big": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/199716/9/49424/102720/674fc3c7F65ab18a3/cb6696dcc27a89bc.jpg!q70.jpg.webp",
                    "share": "http://m.360buyimg.com/mobilecms/s120x120_jfs/t1/199716/9/49424/102720/674fc3c7F65ab18a3/cb6696dcc27a89bc.jpg!q70.jpg"
                },
                {
                    "small": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/220309/21/40450/46234/665050b9Ffba645e0/3395cde2e5f13642.jpg!q70.jpg.webp",
                    "big": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/220309/21/40450/46234/665050b9Ffba645e0/3395cde2e5f13642.jpg!q70.jpg.webp"
                },
                {
                    "small": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/195092/16/45869/27603/665050b8Fbc1395a7/59b1a5f9149c0c25.jpg!q70.jpg.webp",
                    "big": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/195092/16/45869/27603/665050b8Fbc1395a7/59b1a5f9149c0c25.jpg!q70.jpg.webp"
                },
                {
                    "small": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/244790/29/9515/117267/665050b8Fe9fcb314/e17e3716fb90ac00.jpg!q70.jpg.webp",
                    "big": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/244790/29/9515/117267/665050b8Fe9fcb314/e17e3716fb90ac00.jpg!q70.jpg.webp"
                },
                {
                    "small": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/179826/17/46454/29957/665050b7Fa5acdc02/4189a5b7b3f86ed3.jpg!q70.jpg.webp",
                    "big": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/179826/17/46454/29957/665050b7Fa5acdc02/4189a5b7b3f86ed3.jpg!q70.jpg.webp"
                },
                {
                    "small": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/247566/31/9761/77575/665050b7F86a71b66/03df8a1c2b8832e3.jpg!q70.jpg.webp",
                    "big": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/247566/31/9761/77575/665050b7F86a71b66/03df8a1c2b8832e3.jpg!q70.jpg.webp"
                },
                {
                    "small": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/165390/24/44812/58533/665050b7F091d7639/6ff5d3b3c5c261d7.jpg!q70.jpg.webp",
                    "big": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/165390/24/44812/58533/665050b7F091d7639/6ff5d3b3c5c261d7.jpg!q70.jpg.webp"
                },
                {
                    "small": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/109715/33/44457/35859/665050b6F4c5bad85/6cf0832065b1e211.jpg!q70.jpg.webp",
                    "big": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/109715/33/44457/35859/665050b6F4c5bad85/6cf0832065b1e211.jpg!q70.jpg.webp"
                },
                {
                    "small": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/176660/30/45855/47335/665050b5F0e3c86c5/91f69bb5f63b58cb.jpg!q70.jpg.webp",
                    "big": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/176660/30/45855/47335/665050b5F0e3c86c5/91f69bb5f63b58cb.jpg!q70.jpg.webp"
                },
                {
                    "small": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/168455/9/45939/40512/665050b5Ff8a8781f/4c84774696317f66.jpg!q70.jpg.webp",
                    "big": "http://m.360buyimg.com/mobilecms/s1080x1080_jfs/t1/168455/9/45939/40512/665050b5Ff8a8781f/4c84774696317f66.jpg!q70.jpg.webp"
                }
            ],
            "wareInfo": {
                "venderId": "1000004123",
                "name": "米家小米电吹风 吹风机 负离子护发可折叠 大风力速干 H101 白色 CMJ04LXW 礼物推荐",
                "class": "com.jd.ware.view.export.dto.common.bean.WareInfo",
                "skuId": "100042959971"
            },
            "promotionInfo": {
                "isBargain": false,
                "prompt": ""
            },
            "priceInfo": {
                "unit": "台",
                "originalPrice": "99.00",
                "secondPositionPrice": {
                    "value": "99.00"
                },
                "priceType": 0,
                "mainPositionPrice": {
                    "value": "79.00"
                },
                "jprice": "79.00"
            },
            "yuyueInfo": {
                "yuyueNum": 0,
                "isbuyTime": false,
                "isYuYue": false,
                "plusType": 0
            },
            "skuPropertyList": {
                "flashPurchase": {
                    "type": "0"
                }
            },
            "property": {
                "isJzfp": false,
                "hasPrescript": false,
                "venderStore": false,
                "buyMaxNum": 200,
                "isOverseaPurchase": "0",
                "degradeShare": false,
                "easyBuy": false,
                "isBuyCode": false,
                "isRegisterUser": false,
                "isXnzt": false,
                "isBybt": false,
                "isShowShopNameB": false,
                "isSpellPurchase": false,
                "fromType": "0",
                "virtualCardUrl": "https://gamerecg.m.jd.com?skuId=100042959971&chargeType=740&skuName=米家小米电吹风 吹风机 负离子护发可折叠 大风力速干 H101 白色 CMJ04LXW 礼物推荐&skuPrice=79.00",
                "addAndSubToast": {
                    "lowestToastText": "最少购买1件哦!"
                },
                "yhhyd": false,
                "isEasyBuyPrice": true,
                "isRx": false,
                "isHitPlusSubsidy": false,
                "isGiftCard": false,
                "recTabEnable": true,
                "isCollect": false,
                "isOTC": "0",
                "isJx": false,
                "cartFlag": true,
                "isFQY": false,
                "isOP": false,
                "chatUrl": "http://m.360buyimg.com/n3/jfs/t1/199716/9/49424/102720/674fc3c7F65ab18a3/cb6696dcc27a89bc.jpg.webp",
                "isPop": false,
                "androidImageSwitch": true,
                "shareUrl": "https://item.m.jd.com/product/100042959971.html",
                "category": "737;1276;740",
                "skuNum": "1",
                "isYuShou": false,
                "isEncrypt": true,
                "isRegularPrice": true,
                "isSimpleSelect": false
            },
            "weightInfo": {
                "title": "重量",
                "content": "0.53kg"
            },
            "buttonInfo": {
                "main": {
                    "bgColor": "#FFA600,#FFB000,#FFBC00;#E59500,#E59B00,#E6A800;#bfbfbf,#bfbfbf,#bfbfbf",
                    "name": "立即购买",
                    "source": 0,
                    "type": 1,
                    "class": "com.jd.ware.view.export.dto.common.bean.Button",
                    "textColor": "#ffffffff"
                },
                "class": "com.jd.ware.view.export.dto.common.bean.ButtonInfo",
                "second": {
                    "bgColor": "#F10000,#FF2000,#FF4F18;#D80000,#E51C00,#E54615;#bfbfbf,#bfbfbf,#bfbfbf",
                    "name": "加入购物车",
                    "source": 0,
                    "type": 0,
                    "class": "com.jd.ware.view.export.dto.common.bean.Button",
                    "textColor": "#ffffffff"
                }
            },
            "priceLabel": "¥",
            "yanBaoInfo": [

            ],
            "productcomments": {
                "commentVideoInfoList": [

                ],
                "allCnt": "100万+",
                "goodRate": "99%",
                "badCnt": "700+",
                "commentInfoList": [
                    {
                        "commentInfo": {
                            "isShowUserLevel": "0",
                            "pictureInfoList": [
                                {
                                    "picWidth": "720",
                                    "videoPlayAddress": "https://jvod.300hu.com/vod/product/2c8710d8-0a88-4b30-a62f-69dd77c346ac/ec9e43db1bcd474a8ea4d2b393d3f827.mp4?info=45329-1074795-h264-aac",
                                    "picURL": "https://jvod.300hu.com/img/2024/571120212/1/img5.jpg",
                                    "picHeight": "1280",
                                    "mediaLength": "13",
                                    "mediaType": "2",
                                    "mediaId": "1455858159"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/163282/25/26855/55220/6667c205F059b2e32/65161779c6b350e3.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/163282/25/26855/55220/6667c205F059b2e32/65161779c6b350e3.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/235066/7/20303/112990/6667c205Fca6c2131/9b43996a845d19cd.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/235066/7/20303/112990/6667c205Fca6c2131/9b43996a845d19cd.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/90241/13/46395/52310/6667c205F30712369/e04f0a8bd118e567.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/90241/13/46395/52310/6667c205F30712369/e04f0a8bd118e567.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/193686/7/46242/68063/6667c205Fc7e84361/b90ba6a49717f94c.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/193686/7/46242/68063/6667c205Fc7e84361/b90ba6a49717f94c.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/248700/30/11330/80743/6667c205F4790e7ce/fd504b1e19ab100a.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/248700/30/11330/80743/6667c205F4790e7ce/fd504b1e19ab100a.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/166576/9/46391/124411/6667c205F16464cd4/8e257e0779a96b84.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/166576/9/46391/124411/6667c205F16464cd4/8e257e0779a96b84.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/229662/11/17781/83622/6667c206F658f1ce3/22606fc0814b60cb.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/229662/11/17781/83622/6667c206F658f1ce3/22606fc0814b60cb.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/230354/20/20502/81973/6667c205F721027b5/27de9e8684fbd3bc.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/230354/20/20502/81973/6667c205F721027b5/27de9e8684fbd3bc.jpg.dpg",
                                    "mediaType": "1"
                                }
                            ],
                            "commentScore": "5",
                            "plusLogoType": "",
                            "markingList": [

                            ],
                            "commentType": "1",
                            "userNickName": "一***凉",
                            "haveLiked": "0",
                            "wareAttribute": [
                                {
                                    "颜色": "【折叠升级款】-H101 白色"
                                }
                            ],
                            "isShowPlusPendant": "1",
                            "praiseCnt": "3",
                            "ckeKeyWordBury": "",
                            "plusAddress": "https://plus.m.jd.com/index",
                            "commentData": "收到货非常满意,风很大,手感很好,尺寸也刚刚好,推荐购买颜值很高\n重量合适,两个档位。大风,小风,热风冷风都有小米家的牌子就是好用,这款颜值太漂亮了,白色好看同事都问我要链接呢,又不贵,物美价廉下次再准备买一个在老家用粉色也很好看,风很大一会儿就吹干了",
                            "plusLogoId": "",
                            "plusAvailable": "0",
                            "maidianInfo": "",
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "commentDate": "2024-06-11 11:18:30",
                            "afterComment": [

                            ],
                            "commentId": "20921053089",
                            "guid": "135d4acdf225acdd9f82d7e425f93172",
                            "testId": "A",
                            "userImgURL": "https://storage.360buyimg.com/i.imageUpload/6a645f3632393433663663393535313531363736373833353337383538_sma.jpg",
                            "replyCnt": "6"
                        }
                    },
                    {
                        "commentInfo": {
                            "isShowUserLevel": "0",
                            "pictureInfoList": [
                                {
                                    "picWidth": "720",
                                    "videoPlayAddress": "https://jvod.300hu.com/vod/product/c2b23f80-9834-4991-b1fc-926730fb1b6d/f7fd95f8b81342be9a89f583579af8f6.mp4?info=36019-999276-h264-aac",
                                    "picURL": "https://jvod.300hu.com/img/2024/637605680/1/img3.jpg",
                                    "picHeight": "1600",
                                    "mediaLength": "7",
                                    "mediaType": "2",
                                    "mediaId": "1550652691"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/24739/9/21540/113727/66aa858dFc351e43a/b3e4e65ca7c71827.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/24739/9/21540/113727/66aa858dFc351e43a/b3e4e65ca7c71827.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/53592/31/25120/88626/66aa858eF9bd91421/bc3017bdbf3bd2d8.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/53592/31/25120/88626/66aa858eF9bd91421/bc3017bdbf3bd2d8.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/54278/29/25178/129465/66aa858fF85b318d1/f8e199f76e957f23.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/54278/29/25178/129465/66aa858fF85b318d1/f8e199f76e957f23.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/245417/36/16391/146630/66aa8590Fa4327657/116a8d8e82177df1.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/245417/36/16391/146630/66aa8590Fa4327657/116a8d8e82177df1.jpg.dpg",
                                    "mediaType": "1"
                                }
                            ],
                            "commentScore": "5",
                            "plusLogoType": "2",
                            "markingList": [

                            ],
                            "commentType": "1",
                            "userNickName": "孤***丶",
                            "haveLiked": "0",
                            "wareAttribute": [
                                {
                                    "颜色": "【折叠升级款】-H101 白色"
                                }
                            ],
                            "isShowPlusPendant": "1",
                            "praiseCnt": "0",
                            "ckeKeyWordBury": "",
                            "plusAddress": "https://plus.m.jd.com/index",
                            "commentData": "产品质量/服务体验:\n\n商品/服务的质量非常出色,完全符合我的期望。无论是材质、做工还是性能,都达到了很高的标准。\n使用/体验过程中,感受到了专业与贴心的服务,无论是咨询、购买还是售后,都得到了及时且有效的解决。\n外观与设计:\n\n商品的外观设计简约而不失优雅,非常符合我的审美。细节处理得当,展现了高品质的追求。\n服务界面友好,操作简便,使得整个使用过程非常愉悦。\n性价比:\n\n考虑到商品的质量、性能以及服务,这个价格是非常合理的,物超所值。\n相比于其他品牌或同类产品,此商品/服务的性价比明显更高,是一个值得推荐的选择。\n个人感受与推荐:\n\n我非常满意这次购物/体验,不仅是因为商品本身,还有那份被重视和尊重的感觉。\n强烈推荐给大家,无论是自用还是作为礼物,都是一个非常好的选择。\n总结:\n\n总的来说,这是一次非常满意的购物/体验,无论是从质量、服务还是价值上,都给了我超出预期的满足。\n我会毫不犹豫地再次选择这个品牌/服务,并会向朋友和家人推荐。",
                            "plusLogoId": "tab_gif_085",
                            "plusAvailable": "201",
                            "maidianInfo": "",
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "commentDate": "2024-08-01 02:42:25",
                            "afterComment": [

                            ],
                            "commentId": "21127408744",
                            "guid": "4ddfd793d3e0fd8465eb346448face60",
                            "testId": "A",
                            "userImgURL": "https://storage.360buyimg.com/i.imageUpload/6a645f3532643865303031623136313631353535373734393632363138_sma.jpg",
                            "replyCnt": "0"
                        }
                    },
                    {
                        "commentInfo": {
                            "isShowUserLevel": "0",
                            "pictureInfoList": [
                                {
                                    "picWidth": "608",
                                    "videoPlayAddress": "https://jvod.300hu.com/vod/product/c6d2e1fa-cf90-443f-be11-3722b010f731/3197073dcd9843b3afb333028325e7f5.mp4?info=34719-1055337-h264-aac",
                                    "picURL": "https://jvod.300hu.com/img/2024/746170601/1/img7.jpg",
                                    "picHeight": "1080",
                                    "mediaLength": "15",
                                    "mediaType": "2",
                                    "mediaId": "1822772707"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/167021/28/50775/36597/6728345aFfdb34989/4430fcaac31a58f9.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/167021/28/50775/36597/6728345aFfdb34989/4430fcaac31a58f9.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/218691/39/46524/45521/6728345aF0935701a/8f1e3fd742ba8f2b.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/218691/39/46524/45521/6728345aF0935701a/8f1e3fd742ba8f2b.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/184152/12/51008/70474/6728345bF0312104c/58e6b2a4f3ace5d6.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/184152/12/51008/70474/6728345bF0312104c/58e6b2a4f3ace5d6.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/176966/2/51030/2301587/6728345bF87ec93af/091ab57bb9c99967.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/176966/2/51030/2301587/6728345bF87ec93af/091ab57bb9c99967.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/206775/14/47157/4138503/6728345cFc4aba313/c1096168d73c3ffa.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/206775/14/47157/4138503/6728345cFc4aba313/c1096168d73c3ffa.jpg.dpg",
                                    "mediaType": "1"
                                },
                                {
                                    "largePicURL": "http://img30.360buyimg.com/shaidan/s850x850_jfs/t1/175573/6/50807/9800/6728345cF69ff2ce6/88842b5f3f35c671.jpg.dpg",
                                    "picURL": "http://img30.360buyimg.com/shaidan/s411x411_jfs/t1/175573/6/50807/9800/6728345cF69ff2ce6/88842b5f3f35c671.jpg.dpg",
                                    "mediaType": "1"
                                }
                            ],
                            "commentScore": "5",
                            "plusLogoType": "",
                            "markingList": [

                            ],
                            "commentType": "1",
                            "userNickName": "聪***聪",
                            "haveLiked": "0",
                            "wareAttribute": [
                                {
                                    "颜色": "【折叠升级款】-H101 白色"
                                }
                            ],
                            "isShowPlusPendant": "1",
                            "praiseCnt": "0",
                            "ckeKeyWordBury": "",
                            "plusAddress": "https://plus.m.jd.com/index",
                            "commentData": "外观外形:超级好👍🏻,很漂亮是我想要的\n吹干效果:我头发长用的强风挡,没5分钟就可以吹干,避免了长时间吹发让头发发干\n产品重量:产品重量:重量很,外出轻便于携带   很方便买东西就选京东自营店,质量品质有保障,价格实惠,物流给力,快递小哥服务超级好棒👍🏻👍🏻",
                            "plusLogoId": "",
                            "plusAvailable": "0",
                            "maidianInfo": "",
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "commentDate": "2024-11-04 10:41:33",
                            "afterComment": [

                            ],
                            "commentId": "21697680419",
                            "guid": "dc2e0efec4daa4c10eae8611db87ce93",
                            "testId": "A",
                            "userImgURL": "https://storage.360buyimg.com/i.imageUpload/b4cfc3f7b5c4d2cbb4cf31343637313237353439323639_sma.jpg",
                            "replyCnt": "0"
                        }
                    }
                ],
                "videoAutoPlaySwitch": "1",
                "allCntStr": "100万+",
                "semanticTagList": [
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=e828353c64423e7b^^pid=30016^^sku=100042959971^^sversion=1000^^token=39fabcda73d1443e",
                        "tagId": "e828353c64423e7b",
                        "canBeFiltered": true,
                        "count": "3309",
                        "name": "风大马力足",
                        "id": "e828353c64423e7b",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=8612e5e4e7fcc401^^pid=30016^^sku=100042959971^^sversion=1000^^token=71dfb9b0ad718cd4",
                        "tagId": "8612e5e4e7fcc401",
                        "canBeFiltered": true,
                        "count": "1709",
                        "name": "方便携带",
                        "id": "8612e5e4e7fcc401",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=096fe6a400c7dcba^^pid=30016^^sku=100042959971^^sversion=1000^^token=b5f3bcb190000272",
                        "tagId": "096fe6a400c7dcba",
                        "canBeFiltered": true,
                        "count": "1436",
                        "name": "非常好用",
                        "id": "096fe6a400c7dcba",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=8423dd3a21a6433f^^pid=30016^^sku=100042959971^^sversion=1000^^token=a68f231e4bc5e636",
                        "tagId": "8423dd3a21a6433f",
                        "canBeFiltered": true,
                        "count": "1396",
                        "name": "外观漂亮",
                        "id": "8423dd3a21a6433f",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=16401ed6b318dae0^^pid=30016^^sku=100042959971^^sversion=1000^^token=3106137e1d9115e2",
                        "tagId": "16401ed6b318dae0",
                        "canBeFiltered": true,
                        "count": "833",
                        "name": "美观大方",
                        "id": "16401ed6b318dae0",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=dbf63ab4e9199946^^pid=30016^^sku=100042959971^^sversion=1000^^token=b76b065e8c52e7a2",
                        "tagId": "dbf63ab4e9199946",
                        "canBeFiltered": true,
                        "count": "573",
                        "name": "携带方便",
                        "id": "dbf63ab4e9199946",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=06c348f977035a5f^^pid=30016^^sku=100042959971^^sversion=1000^^token=d8c3878bf68c9ded",
                        "tagId": "06c348f977035a5f",
                        "canBeFiltered": true,
                        "count": "256",
                        "name": "不占空间",
                        "id": "06c348f977035a5f",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=bd42d9f9a6a61958^^pid=30016^^sku=100042959971^^sversion=1000^^token=f0c68e6d8794a07d",
                        "tagId": "bd42d9f9a6a61958",
                        "canBeFiltered": true,
                        "count": "252",
                        "name": "噪音很小",
                        "id": "bd42d9f9a6a61958",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=cdf00ec76a6a9ac8^^pid=30016^^sku=100042959971^^sversion=1000^^token=551bbd1f12dacbb8",
                        "tagId": "cdf00ec76a6a9ac8",
                        "canBeFiltered": true,
                        "count": "225",
                        "name": "使用舒适",
                        "id": "cdf00ec76a6a9ac8",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=ec6043a7e1042e2f^^pid=30016^^sku=100042959971^^sversion=1000^^token=610abae1c1f5e38c",
                        "tagId": "ec6043a7e1042e2f",
                        "canBeFiltered": true,
                        "count": "167",
                        "name": "出行必备",
                        "id": "ec6043a7e1042e2f",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=989f637c931891a9^^pid=30016^^sku=100042959971^^sversion=1000^^token=a477ad52f5d7bc55",
                        "tagId": "989f637c931891a9",
                        "canBeFiltered": true,
                        "count": "145",
                        "name": "反应迅速",
                        "id": "989f637c931891a9",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=961502f9e69427c4^^pid=30016^^sku=100042959971^^sversion=1000^^token=643ba20493102c4a",
                        "tagId": "961502f9e69427c4",
                        "canBeFiltered": true,
                        "count": "47",
                        "name": "省时便捷",
                        "id": "961502f9e69427c4",
                        "stand": "1",
                        "type": "4"
                    },
                    {
                        "ckeKeyWordBury": "eid=100^^tagid=0b857d33300feafa^^pid=30016^^sku=100042959971^^sversion=1000^^token=6e727163ed42dbe9",
                        "tagId": "0b857d33300feafa",
                        "canBeFiltered": true,
                        "count": "21",
                        "name": "安装便捷",
                        "id": "0b857d33300feafa",
                        "stand": "1",
                        "type": "4"
                    }
                ],
                "isAllDefaultGoodComment": true,
                "showPicCnt": "500",
                "commentTitle": "评价",
                "isShowYoutuShaituBtn": "1",
                "goodCnt": "12万+",
                "testId": "A",
                "normalCnt": "1100+",
                "pictureCnt": "500",
                "commentButtonText": "查看全部评价",
                "maxPage": 100,
                "defaultGoodLogo": "https://m.360buyimg.com/mobilecms/jfs/t10447/176/1359340654/2177/9ceed2ba/59df1d27N55b368df.png",
                "defaultGoodCountText": "MTAw5LiHK+S4queUqOaIt+m7mOiupOivhOS7t+S6huivpeWVhuWTgQ=="
            }
        },
        "product_introduction": {
            "品牌:": "米家",
            "商品名称:": "小米CMJ04LXW",
            "控温类型:": "一键冷风",
            "风温档位:": "2档",
            "适用场景:": "校园,家用",
            "护发类型:": "负离子",
            "风嘴安装方式:": "卡扣式",
            "负离子量:": "3-5千万ions/m³",
            "特色功能:": "可折叠",
            "适用发质:": "受损发质,沙发发质,正常发质",
            "最大风速:": "10-15m/s",
            "电机转速:": "<30000rpm",
            "包装形式:": "普通装",
            "最大功率:": "1500W-1799W",
            "风速档位:": "2档",
            "最大噪声:": "76-80dB(A)"
        },
        "brand": "373355",
        "_ddf": "fb",
        "format_check": "ok"
    },
    "error": "",
    "secache": "56fd6e88096c4bf78daba6771916adef",
    "secache_time": 1733281501,
    "secache_date": "2024-12-04 11:05:01",
    "reason": "",
    "error_code": "0000",
    "cache": 0,
    "api_info": "today: max:15000 all[=++];expires:2031-01-01",
    "execution_time": "3.102",
    "server_time": "Beijing/2024-12-04 11:05:01",
    "client_ip": "127.0.0.1",
    "call_args": {
        "num_iid": "100042959971"
    },
    "api_type": "jd",
    "server_memory": "4.05MB",
    "last_id": false
}
异常示例
{
	"error": "item-not-found",
	"reason": "item-not-found 接口文档:https://open.onebound.cn/help/api/jd.item_get_app.html",
	"error_code": "2000",
	"api_info": "today:1 max:11000",
	"execution_time": "0.898",
	"server_time": "Beijing/2024-12-04 09:14:13",
	"client_ip": "106.6.32.222",
	"api_type": "jd",
	"translate_language": "zh-CN",
	"translate_engine": "google_new",
	"server_memory": "3.36MB",
	"request_id": "gw-1.62522f64332a5"}
相关资料
错误码解释
状态代码(error_code) 状态信息 详细描述 是否收费
0000success接口调用成功并返回相关数据
2000Search success but no result接口访问成功,但是搜索没有结果
4000Server internal error服务器内部错误
4001Network error网络错误
4002Target server error目标服务器错误
4003Param error用户输入参数错误忽略
4004Account not found用户帐号不存在忽略
4005Invalid authentication credentials授权失败忽略
4006API stopped您的当前API已停用忽略
4007Account stopped您的账户已停用忽略
4008API rate limit exceeded并发已达上限忽略
4009API maintenanceAPI维护中忽略
4010API not found with these valuesAPI不存在忽略
4012Please add api first请先添加api忽略
4013Number of calls exceeded调用次数超限忽略
4014Missing url param参数缺失忽略
4015Wrong pageToken参数pageToken有误忽略
4016Insufficient balance余额不足忽略
4017timeout error请求超时
5000unknown error未知错误
API 工具
如何获得此API
立即开通 有疑问联系客服QQ:QQ:31424016063142401606(微信同号)