通过商品ID提取商品详情页各项数据,包含商品标题,skuid、价格、优惠价,收藏数、拼单人数、月销售量、主图、标题、详情页图片等页面上有的数据均可以拿到,大家都知道,拼多多的反爬虫机制十分严,而很多时候,没办法高效的拿到数据内容响应终端需求,而依赖爬虫就会造成动不动就出现滑块验证,让人很无解,正好,公司有这样的需求,让我负责解决这个问题,刚开始各种尝试,始终没有绕过拼多多的滑块验证码,搞了好几天,都没有进展;然后各种网上资料查询,最终还是不负努力,找到更好的解决方案,让采集不再出现任何滑块验证码,完全解密通过,实现更好的用户体验,已经封装成了拼多多商品详情页API接口、拼多多商品销量API接口、拼多多商品列表API接口、拼多多APP详情API接口、拼多多详情API接口,支持高并发调用接口,可以用于不同的业务场景,包括淘宝详情接口,天猫详情接口,1688详情接口,抖音详情接口,小红书详情接口,京东详情接口,微店详情接口均可以适用,希望能够帮助到有需要的朋友,下面是接口代码对接展示:

1.公共参数

名称 类型 必须 描述
key String 调用key(必须以GET方式拼接在URL中,点击获取测试key和secret)
secret String 调用密钥
api_name String API接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
cache String [yes,no]默认yes,将调用缓存的数据,速度比较快
result_type String [json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
lang String [cn,en,ru]翻译语言,默认cn简体中文
version String API版本

2.请求参数

请求参数:num_iid=1620002566

参数说明:num_iid:商品ID ;

3.请求示例(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 {// 请求示例 url 默认请求参数已经URL编码处理String url = "https://vx19970108018/pinduoduo/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";JSONObject json = getRequestFromUrl(url);System.out.println(json.toString());}}

4.响应参数

5.响应示例

{"item": {"platform": "拼多多商品详情","goods_id": 1620002566,"goods_name": "【2件套】套装秋冬新款仿獭兔毛钉珠皮草毛毛短外套加厚大衣女装","title": "【2件套】套装秋冬新款仿獭兔毛钉珠皮草毛毛短外套加厚大衣女装","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": "面料材质","values": ["仿皮草"],"ref_pid": 346,"reference_id": 0},{"key": "成分含量","values": ["71%(含)—80%(含)"],"ref_pid": 396,"reference_id": 0},{"key": "版型","values": ["修身"],"ref_pid": 318,"reference_id": 0},{"key": "领型","values": ["圆领"],"ref_pid": 347,"reference_id": 0},{"key": "衣长","values": ["短款"],"ref_pid": 319,"reference_id": 0},{"key": "是否带毛领","values": ["不带毛领"],"ref_pid": 1104,"reference_id": 0},{"key": "主风格","values": ["气质名媛"],"ref_pid": 1728,"reference_id": 0}],"sku_products": [{"id": 57114357891,"price": "115","group_price": "95.4","skus": "1115500378,119128","specs": [{"pname": "颜色","pid": 1215,"values": {"vname": "粉色两件套(外套+裙子)","vid": 1115500378}},{"pname": "尺码","pid": 1226,"values": {"vname": "S(90斤以下)","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": "颜色","pid": 1215,"values": {"vname": "粉色两件套(外套+裙子)","vid": 1115500378}},{"pname": "尺码","pid": 1226,"values": {"vname": "M(90-100斤)","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": "颜色","pid": 1215,"values": {"vname": "粉色两件套(外套+裙子)","vid": 1115500378}},{"pname": "尺码","pid": 1226,"values": {"vname": "L(100-110斤)","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": "颜色","pid": 1215,"values": {"vname": "粉色两件套(外套+裙子)","vid": 1115500378}},{"pname": "尺码","pid": 1226,"values": {"vname": "XL(110-120斤)","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": "颜色","pid": 1215,"values": {"vname": "粉色两件套(外套+裙子)","vid": 1115500378}},{"pname": "尺码","pid": 1226,"values": {"vname": "2XL(120-130斤)","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": "颜色","pid": 1215,"values": {"vname": "粉色两件套(外套+裙子)","vid": 1115500378}},{"pname": "尺码","pid": 1226,"values": {"vname": "3XL(130-140斤)","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": "颜色","pid": 1215,"values": {"vname": "米色两件套(外套+裙子)","vid": 1115501666}},{"pname": "尺码","pid": 1226,"values": {"vname": "S(90斤以下)","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": "颜色","pid": 1215,"values": {"vname": "米色两件套(外套+裙子)","vid": 1115501666}},{"pname": "尺码","pid": 1226,"values": {"vname": "M(90-100斤)","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": "颜色","pid": 1215,"values": {"vname": "米色两件套(外套+裙子)","vid": 1115501666}},{"pname": "尺码","pid": 1226,"values": {"vname": "L(100-110斤)","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": "颜色","pid": 1215,"values": {"vname": "米色两件套(外套+裙子)","vid": 1115501666}},{"pname": "尺码","pid": 1226,"values": {"vname": "XL(110-120斤)","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": "颜色","pid": 1215,"values": {"vname": "米色两件套(外套+裙子)","vid": 1115501666}},{"pname": "尺码","pid": 1226,"values": {"vname": "2XL(120-130斤)","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": "颜色","pid": 1215,"values": {"vname": "米色两件套(外套+裙子)","vid": 1115501666}},{"pname": "尺码","pid": 1226,"values": {"vname": "3XL(130-140斤)","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": "颜色","pid": 1215,"values": {"vname": "蓝色两件套(外套+裙子)","vid": 105309781}},{"pname": "尺码","pid": 1226,"values": {"vname": "2XL(120-130斤)","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": "颜色","pid": 1215,"values": {"vname": "蓝色两件套(外套+裙子)","vid": 105309781}},{"pname": "尺码","pid": 1226,"values": {"vname": "3XL(130-140斤)","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": "颜色","pid": 1215,"values": {"vname": "蓝色两件套(外套+裙子)","vid": 105309781}},{"pname": "尺码","pid": 1226,"values": {"vname": "S(90斤以下)","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": "颜色","pid": 1215,"values": {"vname": "蓝色两件套(外套+裙子)","vid": 105309781}},{"pname": "尺码","pid": 1226,"values": {"vname": "M(90-100斤)","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": "颜色","pid": 1215,"values": {"vname": "蓝色两件套(外套+裙子)","vid": 105309781}},{"pname": "尺码","pid": 1226,"values": {"vname": "L(100-110斤)","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": "颜色","pid": 1215,"values": {"vname": "蓝色两件套(外套+裙子)","vid": 105309781}},{"pname": "尺码","pid": 1226,"values": {"vname": "XL(110-120斤)","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": "券前"},"quantity": 1000,"share_title": "【2件套】套装秋冬新款仿獭兔毛钉珠皮草毛毛短外套加厚大衣女装","desc": "【退货包运费】天气逐渐变冷,是时候给宝宝们准备大衣过冬了啊~这款两件套是今年重点给宝宝们推荐的款型哦。快来种树~!,一次性的推出了两个颜色,有少女心的粉色,上身特别减龄哦,有软萌的米白色~!亮点在它们都是两件套的,下身统一搭配刺绣印花毛毛球A字裙,搭配起来很“洋气”很“阳光”,外套内衬升级加棉,冬日更保暖,全手工钉珠工艺,每一颗都是着璨醒目,繁琐工艺只为精品,全套搭配轻松出彩~!<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": "果果家气质女装","mall_id": "461742","mall_goods_num": 22,"thumb": "https://omsproductionimg.yangkeduo.com/images/2018-06-06/864126a1f461e606796b2204d18a09e9.jpeg","postage": "全场包邮","sold_total": "4.1万","side_sales_tip": "已拼4.1万件","is_onsale": 1,"is_pre_sale": 0,"pre_sale_stamp": "","delivery_time": "48小时发货","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": "已拼10万+件","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": "描述相符","color": "#58595B","font": 13},"mallRatingValue": {"txt": "高","color": "#E02E24","font": 11,"backColor": "#FCE5E5"}},{"mallRatingKey": {"txt": "物流服务","color": "#58595B","font": 13},"mallRatingValue": {"txt": "高","color": "#E02E24","font": 11,"backColor": "#FCE5E5"}},{"mallRatingKey": {"txt": "服务态度","color": "#58595B","font": 13},"mallRatingValue": {"txt": "高","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": "颜色","spec_values": [{"1115500378": "粉色两件套(外套+裙子)"},{"1115501666": "米色两件套(外套+裙子)"},{"105309781": "蓝色两件套(外套+裙子)"}]},{"spec_key_id": 1226,"spec_key": "尺码","spec_values": [{"119128": "S(90斤以下)"},{"96784": "M(90-100斤)"},{"33651": "L(100-110斤)"},{"33652": "XL(110-120斤)"},{"33653": "2XL(120-130斤)"},{"33656": "3XL(130-140斤)"}]}],"service_promise": [{"id": 3,"type": "退货包运费","typeColor": "#58595B","dialogType": "退货包运费","desc": "订单发货后90天内如果申请退货退款或换货,拼多多将补贴退货运费","top": 1,"topType": 1,"navigation": 0,"navigationUrl": "","showTip": "收货后如不满意,可以免费退货","detailHidden": 0},{"id": 1,"type": "全场包邮","typeColor": "#58595B","dialogType": "全场包邮","desc": "所有商品包邮","top": 0,"topType": 0,"navigation": 0,"navigationUrl": "","detailHidden": 0},{"id": 2,"type": "7天无理由退货","typeColor": "#58595B","dialogType": "7天无理由退货","desc": "满足相应条件(吊牌无缺失、未洗涤)时,消费者可申请“7天无理由退货”","top": 0,"topType": 0,"navigation": 0,"navigationUrl": "","detailHidden": 0},{"id": 13,"type": "48小时发货","typeColor": "#58595B","dialogType": "48小时发货","desc": "若未在48小时内发货,消费者将会收到至少3元无门槛代金券","top": 0,"topType": 0,"navigation": 0,"navigationUrl": "","detailHidden": 0},{"id": 24,"type": "极速退款","typeColor": "#58595B","dialogType": "极速退款","desc": "拼单成功6小时内,待发货状态下,提交退款申请将立即退款","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": "和美家全屋定制153****7875","avatar": "https://avatar2.pddpic.com/a/Q0dteGIrQXBzV0t5ZUR3QmtSYWpibWVhMVBLdUt2S21Odz09djA0-1634744139?imageMogr2/thumbnail/100x","is_friend": false}],"is_self_group": false,"button_desc": "去拼单","group_type": 1,"is_shared": false,"tag_list": [{"desc": "拼过2次","type": 2}]}],"recommend_group": {"group_order_id": "1733404561653152592","member_info_list": [{"nickname": "和美家全屋定制153****7875","avatar": "https://avatar2.pddpic.com/a/Q0dteGIrQXBzV0t5ZUR3QmtSYWpibWVhMVBLdUt2S21Odz09djA0-1634744139?imageMogr2/thumbnail/100x","is_friend": false}],"is_self_group": false,"button_desc": "去拼单","group_type": 1,"is_shared": false,"tag_list": [{"desc": "拼过2次","type": 2}]},"combine_group_desc": "这些人刚刚拼单成功,可参与拼单","combine_group_popup_title": "可参与的拼单","combine_group_popup_footer": "","combine_group_button_desc": "去拼单","pulldown_group": {"group_info": {"group_order_id": "1733404561653152592","member_info_list": [{"nickname": "和美家全屋定制153****7875","avatar": "https://avatar2.pddpic.com/a/Q0dteGIrQXBzV0t5ZUR3QmtSYWpibWVhMVBLdUt2S21Odz09djA0-1634744139?imageMogr2/thumbnail/100x","is_friend": false}],"is_self_group": false,"button_desc": "去拼单","group_type": 1,"is_shared": false,"tag_list": [{"desc": "拼过2次","type": 2}]},"group_title_info": {"group_title_desc": "刚刚拼单成功,可参与拼单","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": "券后","prefix_rich": [{"txt": "券后","font": 15,"type": 1},{"type": 2,"space": 2},{"txt": "¥","font": 16,"type": 1}],"color": "#E02E24","bg_color": "#FFFFFF","after_coupon": {"tag_rich": [{"txt": "券后","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": ["已拼4.1万件"],"desc_color": "#58595B","imp_tracks": [{"extra": {"type": 0},"page_el_sn": "5049756"}],"price_tag": {"txt": "券前¥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"
}

拼多多商品详情页API接口、拼多多商品销量API接口、拼多多商品列表API接口、拼多多APP详情API接口、拼多多详情API接口相关推荐

  1. 拼多多商家制作商品详情页的技巧?

    现在拼多多平台有了商品详情页视频功能,所以商家可以发布商品详情页视频了,目前在电商平台上,商品视频要比图片更能吸引到消费者的注意,所以做好商品详情页视频要比做好主图的效果要好很多哦,但很多商家并不熟练 ...

  2. 亿级商品详情页架构演进技术解密 | 高可用架构系列

    亿级商品详情页架构演进技术解密 | 高可用架构系列 --http://mp.weixin.qq.com/s?__biz=MzAwMDU1MTE1OQ==&mid=210272034&i ...

  3. 第8章.商品详情页面之thymeleaf

    第8章 Thymeleaf 学习目标 Thymeleaf的介绍 Thymeleaf的入门 Thymeleaf的语法及标签 搜索页面渲染 商品详情页静态化功能实现 1.Thymeleaf介绍 ​ thy ...

  4. 商品详情页动态渲染系统:大型网站的多机房4级缓存架构设计

    124_大型电商网站的商品详情页的深入分析 之前,咱们也是说在讲解这个商品详情页系统的架构 缓存架构,高可用服务 商品详情页系统,我们只是抽取了其中一部分来讲解,而且还做了很大程度的简化 主要是为了用 ...

  5. 乐优商城 Day 09(thymeleaf,Rabbitmq,商品详情页,非教程)

    乐优商城学习Day09: 注意:此次代码都是在第八天的基础上 第八天的链接如下: https://blog.csdn.net/zcylxzyh/article/details/100859210 此次 ...

  6. Django电商项目(六)商品详情页、列表页分页、商品搜索

    Django电商项目 商品详情页 商品列表页 商品搜索 全文检索 安装和配置 索引文件生成 全文检索的使用 改变分词方式 商品详情页 新建detail.html {% extends 'base_de ...

  7. 商品详细信息的代码html_实操分享:如何将商品优惠券,添加到淘宝详情页?...

    有些时候,我们需要为单品设置一些优惠券,但是商品优惠券在宝贝详情页是默认不展示的,我们只能通过装修,在pc端店铺首页.PC端宝贝详情页.无线端店铺首页展示出来,注意:目前商品优惠券不支持在无线端宝贝详 ...

  8. 白屏优化_今日头条品质优化 图文详情页秒开实践

    背景 作为一个内容类应用,看新闻读资讯一直是头条用户的核心需求,页面的打开速度直接关系到用户使用头条的核心体验,在头条中,为了更多的承载足够丰富的样式和逻辑下保持多端体验的统一,详情页的内容我们是通过 ...

  9. 大型电商架构亿级流量电商详情页系统--实战 服务降级

    86_电商网站的商品详情页缓存服务业务背景以及框架结构说明 我们这个课程,基于hystrix,如何来构建高可用的分布式系统的架构,项目实战 模拟真实业务的这么一个小型的项目,来全程贯穿,用这个项目中的 ...

  10. 淘宝详情页分发推荐算法总结:用户即时兴趣强化

    本文介绍淘宝详情页全网分发场景的机制. 商品详情页是手淘内流量最大的模块之一,它加载了数十亿级商品的详细信息,是用户整个决策过程必不可少的一环.这个区块不仅要承接用户对当前商品充分感知的诉求,同时也要 ...

最新文章

  1. java 连nosql_浅谈 Java 中 MongoDB NoSQL数据库使用指南
  2. 校验用户手机号是否合法
  3. NEXUS S安卓4.0/4.1 【完美】 ROOT教程
  4. 什么牌子的平板电脑好_平板电脑什么牌子好?带你一探年度最佳平板的奥秘
  5. ckrule规则编辑器在wpf中的使用
  6. python-组合数据类型
  7. 中gcd函数_函数和模块的使用
  8. 在Mac下配置Appium环境
  9. ansible shell 之运行后台程序
  10. http://www.qiantu.org/index.php?p=403#comments
  11. 程序设计大赛WBS图
  12. 学堂在线android客户端,学堂在线学生登录入口app
  13. 火车票订票小助手,帮助了很多同事和朋友,安全无毒
  14. 性能测试、操作系统优化对性能测试的影响,以及如何优化操作系统
  15. NX二次开发-UFUN获取工程图详细信息UF_DRAW_ask_drawing_info
  16. Android新浪微博实训报告,新浪微博产品简析
  17. 集合{LinkedHashMap TreeMap HashSet LinkedHashSet TreeSet 快速失败机制 ConcurrentHashMap CAS 多线程协同扩容}(二)
  18. Kubelet 中的 “PLEG is not healthy” 到底是个什么鬼?
  19. oracle.manageddataaccess idataparameter,.net 通過ODP.NET Managed 連接Oracle數據庫
  20. python的for循环和for each循环遍历时改变变量的结果

热门文章

  1. 【和小白一起练习CTF】攻防世界:web基础练习题(2)
  2. 在MyEclipse中启动项目时报错:Could not reserve enough space for object heap
  3. JS根据身份证号码计算年龄和性别
  4. Uni-app开发微信小程序的一些基础知识点包括开发工具的安装和项目的初始配置运行(边学边更新)
  5. 测试用例该包含哪些部分
  6. 运算符优先级--辅助记忆
  7. 能源区块链应用实例及特点分析
  8. 小项目1——后宫选妃
  9. 2016-12-07 体力王哈鲁与自行车
  10. Java循环查询数据库优化