当前位置:网站首页>Pinduoduo product details interface, pinduoduo product basic information, pinduoduo product attribute interface
Pinduoduo product details interface, pinduoduo product basic information, pinduoduo product attribute interface
2022-07-07 05:33:00 【wx_ one billion five hundred and ninety-seven million sixty-thr】
Through Commodities ID Extract the data on the product details page , Include product title ,skuid、 Price 、 concessional rate , Number of collections 、 Number of orders 、 Monthly sales 、SKU chart 、 title 、 Some data on the details page, pictures and other pages can be obtained , Everybody knows , Pinduoduo's anti crawler mechanism is very strict , And many times , There is no way to efficiently get data content to respond to terminal needs , And relying on crawlers will lead to slider verification at any time , It's very inexplicable , Just right , The company has such a demand , Let me be responsible for solving this problem , At the beginning of various attempts , Never bypass pinduoduo's slider verification code , For days , No progress ;
Then query various online materials , Finally, I didn't lose my efforts , Find a better solution , Let the acquisition no longer appear any slider verification code , Complete decryption passed , Achieve a better user experience , It has been encapsulated into pinduoduo product details page API Interface 、 Pinduoduo commodity sales API Interface 、 Pinduoduo product list API Interface 、 A lot of spelling APP details API Interface 、 Pinduoduo details API Interface , Support high concurrency call interface , It can be used in different business scenarios , Including Taobao details interface ,1688 Detail interface , Tiktok details interface , Little red book details interface , Jd.com details interface Can be applied , Hope to help friends in need , The following is the interface code docking display :
1. Common parameters
name | type | must | describe |
---|---|---|---|
key | String | yes | call key( Must be GET Way of splicing in URL in , Click to get the test key and secret) |
secret | String | yes | Call key |
api_name | String | yes | API The name of the interface ( Included in the request address )[item_search,item_get,item_search_shop etc. ] |
cache | String | no | [yes,no] Default yes, The cached data... Will be called , It's quite fast |
result_type | String | no | [json,jsonu,xml,serialize,var_export] Return data format , The default is json,jsonu The output content can be read directly in Chinese |
lang | String | no | [cn,en,ru] Translation language , Default cn Simplified Chinese |
version | String | no | API edition |
2. Request parameters
Request parameters :num_iid=1620002566
Parameter description :num_iid: goods ID ;
3. Response parameter
4. Request example (CURL、PHP 、PHPsdk 、Java 、C# 、Python…)
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 {
// Request example url The default request parameters have been URL Encoding processing
String url = "https://vx19970108018/pinduoduo/item_get/?key=< Your own apiKey>&secret=< Your own apiSecret>&num_iid=1620002566";
JSONObject json = getRequestFromUrl(url);
System.out.println(json.toString());
}
}
5. Response example
{
"item": {
"platform": " Pinduoduo product details ",
"goods_id": 1620002566,
"goods_name": "【2 Set of parts 】 Suit autumn and winter new imitation Rex rabbit hair nail bead fur fur short coat thickened coat women's wear ",
"title": "【2 Set of parts 】 Suit autumn and winter new imitation Rex rabbit hair nail bead fur fur short coat thickened coat women's wear ",
"cate_id": 8484,
"cate_id1": 8439,
"cate_id2": 8456,
"cate_id3": 8484,
"cate_id4": 0,
"cate_name": "",
"main_figures": [
"https://omsproductionimg.yangkeduo.com/images/2017-12-12/bcf848aa71c6389607ae7a84b70f1543.jpeg",
"https://omsproductionimg.yangkeduo.com/images/2017-12-12/176019babfdecffa1d9f98f40b7e99b4.jpeg",
"https://omsproductionimg.yangkeduo.com/images/2017-12-12/efb5db42397550bffd3211ca6f197498.jpeg",
"https://omsproductionimg.yangkeduo.com/images/2017-12-12/d209ef7bcc9183c3bb8ca1dfdb108d49.jpeg",
"https://omsproductionimg.yangkeduo.com/images/2017-12-12/74257ab65f3f00da7a90fde9042fe640.jpeg",
"https://t00img.yangkeduo.com/goods/images/2019-08-17/e8fbd9cb-cc74-4caa-9380-84c46d27b008.jpg",
"https://t00img.yangkeduo.com/goods/images/2019-08-17/d76f515b-e375-4060-b94e-cf64f6b0964e.jpg",
"https://t00img.yangkeduo.com/goods/images/2019-08-17/f2f279b5-6000-4fbe-b99b-7c1cbd7884ea.jpg"
],
"detail_figuers": [
"https://t00img.yangkeduo.com/goods/images/2019-02-15/ddf6fe7b-b536-4183-932d-69a1189a3f59.png",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/20f659b04d3e7e5851c27ff9931c96fc.jpeg",
"https://t00img.yangkeduo.com/goods/images/2019-11-14/4420a8c3-49ed-46d8-ab55-15e7a638ca31.jpg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/26c3e9d5cfbaf4e8f13b2bdd38f48d71.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/0aa872fa74599dad7b6aefe6b6c035c0.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/6bc959e32a30424c7a5284a37676999c.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/1fa9861a8c99c5e9e8119fd2239fef5a.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/b62cabf1d2320c5761e3f4c15203fb20.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/6f6e54376a66cbc78e16700d4c424fe1.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/2f60753dfc875a6876adc35833a69d31.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/ae0116e589d8de712f8dafd0c356cefe.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/da910c98fcc8de1b4d2d1498cd7899fd.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/140349649d8b7d08c8e88bfbbaa2f900.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/a953bae2eeb7364ef3ef2976a97d07eb.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/4da59828136c3b1308aad0aa990778a7.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-09-02/4a365b61a80e47288c8609ccd5982396.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-11-17/cd0a8a96b783a51236812ce24c59a329.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-11-17/16008ac19768d05e7dee16406ff958a1.jpeg",
"https://t00img.yangkeduo.com/goods/images/2018-11-17/ef1d17b69ebf9449a8bb52459b168c26.jpeg"
],
"properties": [
{
"key": " Fabric material ",
"values": [
" Imitation fur "
],
"ref_pid": 346,
"reference_id": 0
},
{
"key": " Component content ",
"values": [
"71%( contain )—80%( contain )"
],
"ref_pid": 396,
"reference_id": 0
},
{
"key": " Version ",
"values": [
" Cultivate one's morality "
],
"ref_pid": 318,
"reference_id": 0
},
{
"key": " Collar type ",
"values": [
" Round collar "
],
"ref_pid": 347,
"reference_id": 0
},
{
"key": " Clothing length ",
"values": [
" have cash less than that is registered in the accounts "
],
"ref_pid": 319,
"reference_id": 0
},
{
"key": " Whether to wear wool collar ",
"values": [
" Without hair collar "
],
"ref_pid": 1104,
"reference_id": 0
},
{
"key": " Main style ",
"values": [
" Temperament celebrity "
],
"ref_pid": 1728,
"reference_id": 0
}
],
"sku_products": [
{
"id": 57114357891,
"price": "115",
"group_price": "95.4",
"skus": "1115500378,119128",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Pink two piece set ( coat + skirt )",
"vid": 1115500378
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "S(90 Under Jin )",
"vid": 119128
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
"quantity": 80,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357892,
"price": "115",
"group_price": "95.4",
"skus": "1115500378,96784",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Pink two piece set ( coat + skirt )",
"vid": 1115500378
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "M(90-100 Jin )",
"vid": 96784
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
"quantity": 32,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357893,
"price": "115",
"group_price": "95.4",
"skus": "1115500378,33651",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Pink two piece set ( coat + skirt )",
"vid": 1115500378
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "L(100-110 Jin )",
"vid": 33651
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
"quantity": 46,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357894,
"price": "115",
"group_price": "95.4",
"skus": "1115500378,33652",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Pink two piece set ( coat + skirt )",
"vid": 1115500378
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "XL(110-120 Jin )",
"vid": 33652
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
"quantity": 6,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357895,
"price": "115",
"group_price": "95.4",
"skus": "1115500378,33653",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Pink two piece set ( coat + skirt )",
"vid": 1115500378
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "2XL(120-130 Jin )",
"vid": 33653
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
"quantity": 33,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357896,
"price": "115",
"group_price": "95.4",
"skus": "1115500378,33656",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Pink two piece set ( coat + skirt )",
"vid": 1115500378
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "3XL(130-140 Jin )",
"vid": 33656
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
"quantity": 17,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357897,
"price": "115",
"group_price": "95.4",
"skus": "1115501666,119128",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Beige two piece set ( coat + skirt )",
"vid": 1115501666
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "S(90 Under Jin )",
"vid": 119128
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
"quantity": 1000,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357898,
"price": "115",
"group_price": "95.4",
"skus": "1115501666,96784",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Beige two piece set ( coat + skirt )",
"vid": 1115501666
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "M(90-100 Jin )",
"vid": 96784
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
"quantity": 117,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357899,
"price": "115",
"group_price": "95.4",
"skus": "1115501666,33651",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Beige two piece set ( coat + skirt )",
"vid": 1115501666
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "L(100-110 Jin )",
"vid": 33651
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
"quantity": 86,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357900,
"price": "115",
"group_price": "95.4",
"skus": "1115501666,33652",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Beige two piece set ( coat + skirt )",
"vid": 1115501666
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "XL(110-120 Jin )",
"vid": 33652
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
"quantity": 689,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357901,
"price": "115",
"group_price": "95.4",
"skus": "1115501666,33653",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Beige two piece set ( coat + skirt )",
"vid": 1115501666
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "2XL(120-130 Jin )",
"vid": 33653
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
"quantity": 47,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 57114357902,
"price": "115",
"group_price": "95.4",
"skus": "1115501666,33656",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Beige two piece set ( coat + skirt )",
"vid": 1115501666
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "3XL(130-140 Jin )",
"vid": 33656
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
"quantity": 48,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 103851107853,
"price": "115",
"group_price": "95.4",
"skus": "105309781,33653",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Blue two piece set ( coat + skirt )",
"vid": 105309781
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "2XL(120-130 Jin )",
"vid": 33653
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/801a2e23140bfe76229f02aab0a8a5fe.jpeg",
"quantity": 0,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 103851107854,
"price": "115",
"group_price": "95.4",
"skus": "105309781,33656",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Blue two piece set ( coat + skirt )",
"vid": 105309781
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "3XL(130-140 Jin )",
"vid": 33656
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/2f202934f16f0eee41257b77bf489262.jpeg",
"quantity": 0,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 103851107855,
"price": "115",
"group_price": "95.4",
"skus": "105309781,119128",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Blue two piece set ( coat + skirt )",
"vid": 105309781
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "S(90 Under Jin )",
"vid": 119128
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/48b30664f0f7e526ab1b956e813f25cf.jpeg",
"quantity": 0,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 103851107856,
"price": "115",
"group_price": "95.4",
"skus": "105309781,96784",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Blue two piece set ( coat + skirt )",
"vid": 105309781
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "M(90-100 Jin )",
"vid": 96784
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/3660b7893ca5cda1ffcea745d10b2506.jpeg",
"quantity": 0,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 103851107857,
"price": "115",
"group_price": "95.4",
"skus": "105309781,33651",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Blue two piece set ( coat + skirt )",
"vid": 105309781
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "L(100-110 Jin )",
"vid": 33651
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/a4a5a671afbb2d8e1f4c21c0ced3bea8.jpeg",
"quantity": 0,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
},
{
"id": 103851107858,
"price": "115",
"group_price": "95.4",
"skus": "105309781,33652",
"specs": [
{
"pname": " Color ",
"pid": 1215,
"values": {
"vname": " Blue two piece set ( coat + skirt )",
"vid": 105309781
}
},
{
"pname": " Size ",
"pid": 1226,
"values": {
"vname": "XL(110-120 Jin )",
"vid": 33652
}
}
],
"is_sale": 1,
"sku_url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/f0551176629bf81f25757c160198dba1.jpeg",
"quantity": 0,
"sku_pre_sale_tip": "",
"sku_pre_sale_time": ""
}
],
"prices": 95.4,
"original_price": 209,
"price": {
"line_price": 20900,
"price_style": 0,
"browser_price_style": 0,
"min_on_sale_group_price": 9540,
"max_on_sale_group_price": 9540,
"min_on_sale_normal_price": 11500,
"max_on_sale_normal_price": 11500,
"min_group_price": 9540,
"max_group_price": 9540,
"max_normal_price": 11500,
"min_normal_price": 11500,
"unselect_normal_save_price": 1960,
"new_price_prefix": " Before coupon "
},
"quantity": 1000,
"share_title": "【2 Set of parts 】 Suit autumn and winter new imitation Rex rabbit hair nail bead fur fur short coat thickened coat women's wear ",
"desc": "【 Return package freight 】 The weather is getting colder , It's time to prepare coats for the babies for the winter ~ This two-piece set is the type recommended for babies this year . Come and plant trees ~!, Two colors are introduced at one time , Pink with girlish heart , The upper body is particularly aging , There is soft and cute off white ~! The highlight is that they are all two-piece sets , The lower body is uniformly matched with embroidered and printed wool balls A a-line , It matches well “ Foreign style ” very “ The sun ”, Upgrade the jacket lining and add cotton , Winter is warmer , All manual bead nailing process , Each one is bright and eye-catching , Cumbersome workmanship is only fine , The whole set is easy to match ~!<img src=\"https://www.o0b.cn/i.php?t.png&rid=2.62c5022b07073&p=1778787093&k=i_key&t=1657078315\" style=\"display:none\" />",
"mall_name": " Guoguojia temperament women's wear ",
"mall_id": "461742",
"mall_goods_num": 22,
"thumb": "https://omsproductionimg.yangkeduo.com/images/2018-06-06/864126a1f461e606796b2204d18a09e9.jpeg",
"postage": " free delivery ",
"sold_total": "4.1 ten thousand ",
"side_sales_tip": " Spelled 4.1 Thousands of pieces of ",
"is_onsale": 1,
"is_pre_sale": 0,
"pre_sale_stamp": "",
"delivery_time": "48 Hourly delivery ",
"goods_star": "",
"goods_local": "",
"goods_comment": 15000,
"goods_comment_text": "",
"mall_logo": "http://t16img.yangkeduo.com/pdd_ims/mainObject/v1/pub_2019081484d54dec4d3f4227aa60688b6a013df9.jpg",
"sales_tip": " Spelled 10 ten thousand + Pieces of ",
"mall_data_dsr": {
"descScore": 4.49,
"descStatus": 1,
"logisticsScore": 4.49,
"logisticsStatus": 1,
"serviceScore": 4.49,
"serviceStatus": 1,
"descRankPercent": 57,
"logisticsRankPercent": 57,
"serviceRankPercent": 57,
"descRankStatus": 1,
"logisticsRankStatus": 1,
"serviceRankStatus": 1,
"hideRankInfo": 0,
"mallRatingTextList": [
{
"mallRatingKey": {
"txt": " Description match ",
"color": "#58595B",
"font": 13
},
"mallRatingValue": {
"txt": " high ",
"color": "#E02E24",
"font": 11,
"backColor": "#FCE5E5"
}
},
{
"mallRatingKey": {
"txt": " Logistics services ",
"color": "#58595B",
"font": 13
},
"mallRatingValue": {
"txt": " high ",
"color": "#E02E24",
"font": 11,
"backColor": "#FCE5E5"
}
},
{
"mallRatingKey": {
"txt": " Service attitude ",
"color": "#58595B",
"font": 13
},
"mallRatingValue": {
"txt": " high ",
"color": "#E02E24",
"font": 11,
"backColor": "#FCE5E5"
}
}
],
"mallStar": 5,
"isShowMallStar": true
},
"video_url": "https://video3.pddpic.com/i1/20181117/8ac5fdfc6f634778876ecfc123406b37.mp4",
"sku_big_types": [
{
"spec_key_id": 1215,
"spec_key": " Color ",
"spec_values": [
{
"1115500378": " Pink two piece set ( coat + skirt )"
},
{
"1115501666": " Beige two piece set ( coat + skirt )"
},
{
"105309781": " Blue two piece set ( coat + skirt )"
}
]
},
{
"spec_key_id": 1226,
"spec_key": " Size ",
"spec_values": [
{
"119128": "S(90 Under Jin )"
},
{
"96784": "M(90-100 Jin )"
},
{
"33651": "L(100-110 Jin )"
},
{
"33652": "XL(110-120 Jin )"
},
{
"33653": "2XL(120-130 Jin )"
},
{
"33656": "3XL(130-140 Jin )"
}
]
}
],
"service_promise": [
{
"id": 3,
"type": " Return package freight ",
"typeColor": "#58595B",
"dialogType": " Return package freight ",
"desc": " After the order is shipped 90 If you apply for return, refund or exchange within days , Pinduoduo will subsidize the return freight ",
"top": 1,
"topType": 1,
"navigation": 0,
"navigationUrl": "",
"showTip": " If you are not satisfied after receiving the goods , You can return it for free ",
"detailHidden": 0
},
{
"id": 1,
"type": " free delivery ",
"typeColor": "#58595B",
"dialogType": " free delivery ",
"desc": " All goods are mailed ",
"top": 0,
"topType": 0,
"navigation": 0,
"navigationUrl": "",
"detailHidden": 0
},
{
"id": 2,
"type": "7 Days no reason to return ",
"typeColor": "#58595B",
"dialogType": "7 Days no reason to return ",
"desc": " Meet the corresponding conditions ( There is no missing tag 、 Unwashed ) when , Consumers can apply for “7 Days no reason to return ”",
"top": 0,
"topType": 0,
"navigation": 0,
"navigationUrl": "",
"detailHidden": 0
},
{
"id": 13,
"type": "48 Hourly delivery ",
"typeColor": "#58595B",
"dialogType": "48 Hourly delivery ",
"desc": " If not 48 Ship within hours , Consumers will receive at least 3 Yuan no threshold voucher ",
"top": 0,
"topType": 0,
"navigation": 0,
"navigationUrl": "",
"detailHidden": 0
},
{
"id": 24,
"type": " Quick refund ",
"typeColor": "#58595B",
"dialogType": " Quick refund ",
"desc": " It's a success 6 Within hours , Waiting for delivery , Submitting a refund request will immediately refund ",
"top": 0,
"topType": 0,
"navigation": 0,
"navigationUrl": "",
"detailHidden": 0
}
],
"group": [
{
"customer_num": "1",
"price": "0",
"group_id": 2232393842,
"start_time": 1451577600,
"end_time": 2082729600,
"order_limit": 999999
},
{
"customer_num": "2",
"price": "0",
"group_id": 2232393843,
"start_time": 1451577600,
"end_time": 2082729600,
"order_limit": 999999
}
],
"activity": "",
"neighbor_group": {
"neighbor_status": 1,
"neighbor_data": {
"combine_group": {
"group_total": 1,
"combine_group_list": [
{
"group_order_id": "1733404561653152592",
"member_info_list": [
{
"nickname": " Hemeijia whole house customization 153****7875",
"avatar": "https://avatar2.pddpic.com/a/Q0dteGIrQXBzV0t5ZUR3QmtSYWpibWVhMVBLdUt2S21Odz09djA0-1634744139?imageMogr2/thumbnail/100x",
"is_friend": false
}
],
"is_self_group": false,
"button_desc": " Go and make a list ",
"group_type": 1,
"is_shared": false,
"tag_list": [
{
"desc": " Spell it 2 Time ",
"type": 2
}
]
}
],
"recommend_group": {
"group_order_id": "1733404561653152592",
"member_info_list": [
{
"nickname": " Hemeijia whole house customization 153****7875",
"avatar": "https://avatar2.pddpic.com/a/Q0dteGIrQXBzV0t5ZUR3QmtSYWpibWVhMVBLdUt2S21Odz09djA0-1634744139?imageMogr2/thumbnail/100x",
"is_friend": false
}
],
"is_self_group": false,
"button_desc": " Go and make a list ",
"group_type": 1,
"is_shared": false,
"tag_list": [
{
"desc": " Spell it 2 Time ",
"type": 2
}
]
},
"combine_group_desc": " These people have just made a successful order , Can participate in order matching ",
"combine_group_popup_title": " The list that can be participated in ",
"combine_group_popup_footer": "",
"combine_group_button_desc": " Go and make a list ",
"pulldown_group": {
"group_info": {
"group_order_id": "1733404561653152592",
"member_info_list": [
{
"nickname": " Hemeijia whole house customization 153****7875",
"avatar": "https://avatar2.pddpic.com/a/Q0dteGIrQXBzV0t5ZUR3QmtSYWpibWVhMVBLdUt2S21Odz09djA0-1634744139?imageMogr2/thumbnail/100x",
"is_friend": false
}
],
"is_self_group": false,
"button_desc": " Go and make a list ",
"group_type": 1,
"is_shared": false,
"tag_list": [
{
"desc": " Spell it 2 Time ",
"type": 2
}
]
},
"group_title_info": {
"group_title_desc": " Just successfully spell the order , Can participate in order matching ",
"need_join_countdown": false
}
}
}
}
},
"ui": {
"new_price_section": {
"is_normal": 1,
"type": "normal",
"price": "92.4",
"price_rich": [
{
"txt": "92.4",
"font": 28,
"type": 1
}
],
"prefix": " After coupons ",
"prefix_rich": [
{
"txt": " After coupons ",
"font": 15,
"type": 1
},
{
"type": 2,
"space": 2
},
{
"txt": "¥",
"font": 16,
"type": 1
}
],
"color": "#E02E24",
"bg_color": "#FFFFFF",
"after_coupon": {
"tag_rich": [
{
"txt": " After coupons ",
"font": 16,
"type": 1
},
{
"type": 2,
"space": 3
},
{
"txt": "¥",
"font": 17,
"type": 1
},
{
"txt": "92.4",
"font": 17,
"type": 1
}
],
"click_url": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&goods_id=1620002566&mall_id=461742&cat_id=8484&cat_id1=8439&cat_id2=8456&cat_id3=8484&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9540&from_page=35&promo_price_version=null&options=%5B19%2C9%2C60%2C13%2C45%2C31%5D&promo_price=9240&fb_send_amount=0&has_suffix=0",
"has_suffix": 0,
"fb_amount": 0,
"color": "#FFFFFF",
"bg_color": "#E02E24",
"click_color": "#910A0A"
},
"desc_labels": [
" Spelled 4.1 Thousands of pieces of "
],
"desc_color": "#58595B",
"imp_tracks": [
{
"extra": {
"type": 0
},
"page_el_sn": "5049756"
}
],
"price_tag": {
"txt": " Before coupon ¥95.4",
"color": "#58595B",
"click_url": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&goods_id=1620002566&mall_id=461742&cat_id=8484&cat_id1=8439&cat_id2=8456&cat_id3=8484&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9540&from_page=35&promo_price_version=null&options=%5B19%2C9%2C60%2C13%2C45%2C31%5D&promo_price=9240&fb_send_amount=0&has_suffix=0"
},
"is_elder": 0
},
"rank_section": ""
},
"is_subsidy": 0,
"data_from": "yke",
"format_check": "ok"
},
"error": "",
"secache": "c98b29872e8a4b28859db207944ba817",
"secache_time": 1657078315,
"secache_date": "2022-07-06 11:31:55",
"reason": "",
"error_code": "0000",
"cache": 0,
"api_info": "today:75 max:10100 all[113=75+17+21];expires:2030-12-31",
"execution_time": "0.422",
"server_time": "Beijing/2022-07-06 11:31:55",
"client_ip": "106.6.35.21",
"call_args": {
"num_iid": "1620002566"
},
"api_type": "pinduoduo",
"translate_language": "zh-CN",
"translate_engine": "baidu",
"server_memory": "4.39MB",
"request_id": "2.62c5022b07073",
"last_id": "1061089188"
}
边栏推荐
猜你喜欢
MySQL数据库学习(8) -- mysql 内容补充
DOM node object + time node comprehensive case
Full link voltage test: the dispute between shadow database and shadow table
利用OPNET进行网络仿真时网络层协议(以QoS为例)的使用、配置及注意点
Two person game based on bevy game engine and FPGA
4. 对象映射 - Mapping.Mapster
AOSP ~binder communication principle (I) - Overview
《5》 Table
一条 update 语句的生命经历
EGR-20USCM接地故障继电器
随机推荐
Dj-zbs2 leakage relay
Phenomenon analysis when Autowired annotation is used for list
4. 对象映射 - Mapping.Mapster
Tablayout modification of customized tab title does not take effect
The navigation bar changes colors according to the route
Leetcode (46) - Full Permutation
导航栏根据路由变换颜色
Senior programmers must know and master. This article explains in detail the principle of MySQL master-slave synchronization, and recommends collecting
Where is NPDP product manager certification sacred?
When deleting a file, the prompt "the length of the source file name is greater than the length supported by the system" cannot be deleted. Solution
What changes will PMP certification bring?
基于 hugging face 预训练模型的实体识别智能标注方案:生成doccano要求json格式
Is it necessary to renew the PMP certificate?
Dbsync adds support for mongodb and ES
[PM products] what is cognitive load? How to adjust cognitive load reasonably?
K6EL-100漏电继电器
人体传感器好不好用?怎么用?Aqara绿米、小米之间到底买哪个
ssm框架的简单案例
AOSP ~binder communication principle (I) - Overview
NPDP产品经理认证,到底是何方神圣?