• 拼多多详情API接口深度解读


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

    一、公共参数 

    点击获取key和secret

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

    二、请求参数

    请求参数:num_iid=1620002566

    参数说明:num_iid:商品ID ;

    三、响应参数

    Version: Date:

    名称类型必须示例值描述

    num_iid

    String01999629976商品ID

    title

    String02019新款女装短袖t恤女夏宽松韩版休闲上衣百搭蝙蝠衫五分袖体恤商品标题

    price

    Float08.8价格

    minGroupPrice

    String0

    maxGroupPrice

    String0

    total_price

    Float0

    orginal_price

    Float0原价

    nick

    String0雅怡服饰1688卖家昵称

    num

    Int0233库存

    sales

    Int076销量

    detail_url

    String0http://yangkeduo.com/goods.html?goods_id=1999629976宝贝链接

    desc

    String0本店默认申通快递【还有百世汇通 中通快递 中通 韵达 邮政】。商家建议尺码仅供参考。如有其它问题请及时联系客服!喜欢的赶紧购买,质量保证,买的放心,穿的也开心!商品备注

    item_imgs

    Mix0[{"url": "//t00img.yangkeduo.com/t05img/images/2018-06-28/24bcb29df1195edaea840afd3e1bdaf9.jpeg?imageMogr2/strip%7CimageView2/2/w/1300/q/80"}]宝贝图片列表

    pic_url

    String0//t00img.yangkeduo.com/t05img/images/2018-06-28/24bcb29df1195edaea840afd3e1bdaf9.jpeg?imageMogr2/thumbnail/150x/quality/50宝贝图片

    props_name

    String0商品属性名

    prop_imgs

    Mix0{"prop_img": [ {"properties": "0:0;1:1", "url": "//t00img.yangkeduo.com/t10img/images/2018-06-28/5c8f783ab2c4fea0ffea8fac73d8b2c2.jpeg"}]}商品属性图片列表

    props

    Mix0商品详情

    skus

    Mix0{"sku": [{"price": "16.56", "total_price": null, "orginal_price": "20.9", "properties": "0:0;1:1", "properties_name": "0:0:颜色:黑色;1:1:尺码:M【75-100斤】", "quantity": 221, "sku_id": 36410965966}]商品规格信息

    props_list

    Mix0{ "0:0": "颜色:黑色","1:1": "尺码:M【75-100斤】"}商品属性

    props_img

    Mix0{"0:0;1:1": "//t00img.yangkeduo.com/t10img/images/2018-06-28/5c8f783ab2c4fea0ffea8fac73d8b2c2.jpeg"}属性图片

    property_alias

    String0商品属性别名

    seller_info

    Mix0{"nick": "雅怡服饰1688", "city": "", "level": null, "rate": null, "score": 4.27, "delivery_score": 4.37, "item_score": 4.38, "shop_type": "", "user_num_id": "", "sid": 99033, "shop_name": "雅怡服饰1688", "zhuy": "", "menu": [] }卖家信息

    shop_item

    Mix0[]

    relate_items

    Mix0[]

    四、请求示例

    1. //using System.Net.Security;
    2. //using System.Security.Cryptography.X509Certificates;
    3. private const String method = "GET";
    4. static void Main(string[] args)
    5. {
    6. String bodys = "";
    7. // 请求示例 url 默认请求参数已经做URL编码
    8. String url = "https://api-gw.onebound.cn/pinduoduo/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
    9. HttpWebRequest httpRequest = null;
    10. HttpWebResponse httpResponse = null;
    11. if (url.Contains("https://"))
    12. {
    13. ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
    14. httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
    15. }
    16. else
    17. {
    18. httpRequest = (HttpWebRequest)WebRequest.Create(url);
    19. }
    20. httpRequest.Method = method;
    21. if (0 < bodys.Length)
    22. {
    23. byte[] data = Encoding.UTF8.GetBytes(bodys);
    24. using (Stream stream = httpRequest.GetRequestStream())
    25. {
    26. stream.Write(data, 0, data.Length);
    27. }
    28. }
    29. try
    30. {
    31. httpResponse = (HttpWebResponse)httpRequest.GetResponse();
    32. }
    33. catch (WebException ex)
    34. {
    35. httpResponse = (HttpWebResponse)ex.Response;
    36. }
    37. Console.WriteLine(httpResponse.StatusCode);
    38. Console.WriteLine(httpResponse.Method);
    39. Console.WriteLine(httpResponse.Headers);
    40. Stream st = httpResponse.GetResponseStream();
    41. StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
    42. Console.WriteLine(reader.ReadToEnd());
    43. Console.WriteLine("\n");
    44. }
    45. public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
    46. {
    47. return true;
    48. }
    49.  

    五、响应示例 

    1. ---------------------------------------
    2. {
    3. "item": {
    4. "num_iid": "1620002566",
    5. "title": "【2件套】套装秋冬新款仿獭兔毛钉珠皮草毛毛短外套加厚大衣女装",
    6. "price": 95.4,
    7. "minGroupPrice": 115,
    8. "maxGroupPrice": 95.4,
    9. "total_price": "",
    10. "desc_short": null,
    11. "cid": 8484,
    12. "orginal_price": 115,
    13. "nick": "果果家气质女装",
    14. "num": 2201,
    15. "sales": 41000,
    16. "detail_url": "https://mobile.yangkeduo.com/goods1.html?goods_id=1620002566",
    17. "desc": "\"https://t00img.yangkeduo.com/goods/images/2019-02-15/ddf6fe7b-b536-4183-932d-69a1189a3f59.png\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/20f659b04d3e7e5851c27ff9931c96fc.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2019-11-14/4420a8c3-49ed-46d8-ab55-15e7a638ca31.jpg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/26c3e9d5cfbaf4e8f13b2bdd38f48d71.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/0aa872fa74599dad7b6aefe6b6c035c0.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/6bc959e32a30424c7a5284a37676999c.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/1fa9861a8c99c5e9e8119fd2239fef5a.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/b62cabf1d2320c5761e3f4c15203fb20.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/6f6e54376a66cbc78e16700d4c424fe1.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/2f60753dfc875a6876adc35833a69d31.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/ae0116e589d8de712f8dafd0c356cefe.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/da910c98fcc8de1b4d2d1498cd7899fd.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/140349649d8b7d08c8e88bfbbaa2f900.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/a953bae2eeb7364ef3ef2976a97d07eb.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/4da59828136c3b1308aad0aa990778a7.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-09-02/4a365b61a80e47288c8609ccd5982396.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-11-17/cd0a8a96b783a51236812ce24c59a329.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-11-17/16008ac19768d05e7dee16406ff958a1.jpeg\" style=\"width:100%;\"/>\"https://t00img.yangkeduo.com/goods/images/2018-11-17/ef1d17b69ebf9449a8bb52459b168c26.jpeg\" style=\"width:100%;\"/>\"https://www.o0b.cn/i.php?t.png&rid=gw-1.62eb1c34103ff&p=1778787091&k=i_key&t=1659575348\" style=\"display:none\" />",
    18. "item_imgs": [
    19. {
    20. "url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/bcf848aa71c6389607ae7a84b70f1543.jpeg"
    21. },
    22. {
    23. "url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/176019babfdecffa1d9f98f40b7e99b4.jpeg"
    24. },
    25. {
    26. "url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/efb5db42397550bffd3211ca6f197498.jpeg"
    27. },
    28. {
    29. "url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/d209ef7bcc9183c3bb8ca1dfdb108d49.jpeg"
    30. },
    31. {
    32. "url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/74257ab65f3f00da7a90fde9042fe640.jpeg"
    33. },
    34. {
    35. "url": "https://img.pddpic.com/goods/images/2019-08-17/e8fbd9cb-cc74-4caa-9380-84c46d27b008.jpg"
    36. },
    37. {
    38. "url": "https://img.pddpic.com/goods/images/2019-08-17/d76f515b-e375-4060-b94e-cf64f6b0964e.jpg"
    39. },
    40. {
    41. "url": "https://img.pddpic.com/goods/images/2019-08-17/f2f279b5-6000-4fbe-b99b-7c1cbd7884ea.jpg"
    42. }
    43. ],
    44. "pic_url": "https://omsproductionimg.yangkeduo.com/images/2017-12-12/bcf848aa71c6389607ae7a84b70f1543.jpeg",
    45. "props_name": "1215:1115500378:颜色:粉色两件套(外套+裙子);1215:1115500378:颜色:粉色两件套(外套+裙子);1215:1115500378:颜色:粉色两件套(外套+裙子);1215:1115500378:颜色:粉色两件套(外套+裙子);1215:1115500378:颜色:粉色两件套(外套+裙子);1215:1115500378:颜色:粉色两件套(外套+裙子);1215:1115501666:颜色:米色两件套(外套+裙子);1215:1115501666:颜色:米色两件套(外套+裙子);1215:1115501666:颜色:米色两件套(外套+裙子);1215:1115501666:颜色:米色两件套(外套+裙子);1215:1115501666:颜色:米色两件套(外套+裙子);1215:1115501666:颜色:米色两件套(外套+裙子);1215:105309781:颜色:蓝色两件套(外套+裙子);1215:105309781:颜色:蓝色两件套(外套+裙子);1215:105309781:颜色:蓝色两件套(外套+裙子);1215:105309781:颜色:蓝色两件套(外套+裙子);1215:105309781:颜色:蓝色两件套(外套+裙子);1215:105309781:颜色:蓝色两件套(外套+裙子);1226:119128:尺码:S(90斤以下);1226:96784:尺码:M(90-100斤);1226:33651:尺码:L(100-110斤);1226:33652:尺码:XL(110-120斤);1226:33653:尺码:2XL(120-130斤);1226:33656:尺码:3XL(130-140斤);1226:119128:尺码:S(90斤以下);1226:96784:尺码:M(90-100斤);1226:33651:尺码:L(100-110斤);1226:33652:尺码:XL(110-120斤);1226:33653:尺码:2XL(120-130斤);1226:33656:尺码:3XL(130-140斤);1226:33653:尺码:2XL(120-130斤);1226:33656:尺码:3XL(130-140斤);1226:119128:尺码:S(90斤以下);1226:96784:尺码:M(90-100斤);1226:33651:尺码:L(100-110斤);1226:33652:尺码:XL(110-120斤)",
    46. "prop_imgs": {
    47. "prop_img": [
    48. {
    49. "properties": "1215:1115500378",
    50. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    51. },
    52. {
    53. "properties": "1215:1115500378",
    54. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    55. },
    56. {
    57. "properties": "1215:1115500378",
    58. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    59. },
    60. {
    61. "properties": "1215:1115500378",
    62. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    63. },
    64. {
    65. "properties": "1215:1115500378",
    66. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    67. },
    68. {
    69. "properties": "1215:1115500378",
    70. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    71. },
    72. {
    73. "properties": "1215:1115501666",
    74. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    75. },
    76. {
    77. "properties": "1215:1115501666",
    78. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    79. },
    80. {
    81. "properties": "1215:1115501666",
    82. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    83. },
    84. {
    85. "properties": "1215:1115501666",
    86. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    87. },
    88. {
    89. "properties": "1215:1115501666",
    90. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    91. },
    92. {
    93. "properties": "1215:1115501666",
    94. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    95. },
    96. {
    97. "properties": "1215:105309781",
    98. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/801a2e23140bfe76229f02aab0a8a5fe.jpeg"
    99. },
    100. {
    101. "properties": "1215:105309781",
    102. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/2f202934f16f0eee41257b77bf489262.jpeg"
    103. },
    104. {
    105. "properties": "1215:105309781",
    106. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/48b30664f0f7e526ab1b956e813f25cf.jpeg"
    107. },
    108. {
    109. "properties": "1215:105309781",
    110. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/3660b7893ca5cda1ffcea745d10b2506.jpeg"
    111. },
    112. {
    113. "properties": "1215:105309781",
    114. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/a4a5a671afbb2d8e1f4c21c0ced3bea8.jpeg"
    115. },
    116. {
    117. "properties": "1215:105309781",
    118. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/f0551176629bf81f25757c160198dba1.jpeg"
    119. }
    120. ]
    121. },
    122. "props": [
    123. {
    124. "name": "面料材质",
    125. "value": "仿皮草"
    126. },
    127. {
    128. "name": "成分含量",
    129. "value": "71%(含)—80%(含)"
    130. },
    131. {
    132. "name": "版型",
    133. "value": "修身"
    134. },
    135. {
    136. "name": "领型",
    137. "value": "圆领"
    138. },
    139. {
    140. "name": "衣长",
    141. "value": "短款"
    142. },
    143. {
    144. "name": "是否带毛领",
    145. "value": "不带毛领"
    146. },
    147. {
    148. "name": "主风格",
    149. "value": "气质名媛"
    150. }
    151. ],
    152. "skus": {
    153. "sku": [
    154. {
    155. "price": 95.4,
    156. "total_price": 0,
    157. "orginal_price": 115,
    158. "properties": "1215:1115500378;1226:119128",
    159. "properties_name": "1215:1115500378:颜色:粉色两件套(外套+裙子);1226:119128:尺码:S(90斤以下)",
    160. "quantity": 80,
    161. "sku_id": "57114357891"
    162. },
    163. {
    164. "price": 95.4,
    165. "total_price": 0,
    166. "orginal_price": 115,
    167. "properties": "1215:1115500378;1226:96784",
    168. "properties_name": "1215:1115500378:颜色:粉色两件套(外套+裙子);1226:96784:尺码:M(90-100斤)",
    169. "quantity": 32,
    170. "sku_id": "57114357892"
    171. },
    172. {
    173. "price": 95.4,
    174. "total_price": 0,
    175. "orginal_price": 115,
    176. "properties": "1215:1115500378;1226:33651",
    177. "properties_name": "1215:1115500378:颜色:粉色两件套(外套+裙子);1226:33651:尺码:L(100-110斤)",
    178. "quantity": 46,
    179. "sku_id": "57114357893"
    180. },
    181. {
    182. "price": 95.4,
    183. "total_price": 0,
    184. "orginal_price": 115,
    185. "properties": "1215:1115500378;1226:33652",
    186. "properties_name": "1215:1115500378:颜色:粉色两件套(外套+裙子);1226:33652:尺码:XL(110-120斤)",
    187. "quantity": 6,
    188. "sku_id": "57114357894"
    189. },
    190. {
    191. "price": 95.4,
    192. "total_price": 0,
    193. "orginal_price": 115,
    194. "properties": "1215:1115500378;1226:33653",
    195. "properties_name": "1215:1115500378:颜色:粉色两件套(外套+裙子);1226:33653:尺码:2XL(120-130斤)",
    196. "quantity": 33,
    197. "sku_id": "57114357895"
    198. },
    199. {
    200. "price": 95.4,
    201. "total_price": 0,
    202. "orginal_price": 115,
    203. "properties": "1215:1115500378;1226:33656",
    204. "properties_name": "1215:1115500378:颜色:粉色两件套(外套+裙子);1226:33656:尺码:3XL(130-140斤)",
    205. "quantity": 17,
    206. "sku_id": "57114357896"
    207. },
    208. {
    209. "price": 95.4,
    210. "total_price": 0,
    211. "orginal_price": 115,
    212. "properties": "1215:1115501666;1226:119128",
    213. "properties_name": "1215:1115501666:颜色:米色两件套(外套+裙子);1226:119128:尺码:S(90斤以下)",
    214. "quantity": 1000,
    215. "sku_id": "57114357897"
    216. },
    217. {
    218. "price": 95.4,
    219. "total_price": 0,
    220. "orginal_price": 115,
    221. "properties": "1215:1115501666;1226:96784",
    222. "properties_name": "1215:1115501666:颜色:米色两件套(外套+裙子);1226:96784:尺码:M(90-100斤)",
    223. "quantity": 117,
    224. "sku_id": "57114357898"
    225. },
    226. {
    227. "price": 95.4,
    228. "total_price": 0,
    229. "orginal_price": 115,
    230. "properties": "1215:1115501666;1226:33651",
    231. "properties_name": "1215:1115501666:颜色:米色两件套(外套+裙子);1226:33651:尺码:L(100-110斤)",
    232. "quantity": 86,
    233. "sku_id": "57114357899"
    234. },
    235. {
    236. "price": 95.4,
    237. "total_price": 0,
    238. "orginal_price": 115,
    239. "properties": "1215:1115501666;1226:33652",
    240. "properties_name": "1215:1115501666:颜色:米色两件套(外套+裙子);1226:33652:尺码:XL(110-120斤)",
    241. "quantity": 689,
    242. "sku_id": "57114357900"
    243. },
    244. {
    245. "price": 95.4,
    246. "total_price": 0,
    247. "orginal_price": 115,
    248. "properties": "1215:1115501666;1226:33653",
    249. "properties_name": "1215:1115501666:颜色:米色两件套(外套+裙子);1226:33653:尺码:2XL(120-130斤)",
    250. "quantity": 47,
    251. "sku_id": "57114357901"
    252. },
    253. {
    254. "price": 95.4,
    255. "total_price": 0,
    256. "orginal_price": 115,
    257. "properties": "1215:1115501666;1226:33656",
    258. "properties_name": "1215:1115501666:颜色:米色两件套(外套+裙子);1226:33656:尺码:3XL(130-140斤)",
    259. "quantity": 48,
    260. "sku_id": "57114357902"
    261. },
    262. {
    263. "price": 95.4,
    264. "total_price": 0,
    265. "orginal_price": 115,
    266. "properties": "1215:105309781;1226:33653",
    267. "properties_name": "1215:105309781:颜色:蓝色两件套(外套+裙子);1226:33653:尺码:2XL(120-130斤)",
    268. "quantity": 0,
    269. "sku_id": "103851107853"
    270. },
    271. {
    272. "price": 95.4,
    273. "total_price": 0,
    274. "orginal_price": 115,
    275. "properties": "1215:105309781;1226:33656",
    276. "properties_name": "1215:105309781:颜色:蓝色两件套(外套+裙子);1226:33656:尺码:3XL(130-140斤)",
    277. "quantity": 0,
    278. "sku_id": "103851107854"
    279. },
    280. {
    281. "price": 95.4,
    282. "total_price": 0,
    283. "orginal_price": 115,
    284. "properties": "1215:105309781;1226:119128",
    285. "properties_name": "1215:105309781:颜色:蓝色两件套(外套+裙子);1226:119128:尺码:S(90斤以下)",
    286. "quantity": 0,
    287. "sku_id": "103851107855"
    288. },
    289. {
    290. "price": 95.4,
    291. "total_price": 0,
    292. "orginal_price": 115,
    293. "properties": "1215:105309781;1226:96784",
    294. "properties_name": "1215:105309781:颜色:蓝色两件套(外套+裙子);1226:96784:尺码:M(90-100斤)",
    295. "quantity": 0,
    296. "sku_id": "103851107856"
    297. },
    298. {
    299. "price": 95.4,
    300. "total_price": 0,
    301. "orginal_price": 115,
    302. "properties": "1215:105309781;1226:33651",
    303. "properties_name": "1215:105309781:颜色:蓝色两件套(外套+裙子);1226:33651:尺码:L(100-110斤)",
    304. "quantity": 0,
    305. "sku_id": "103851107857"
    306. },
    307. {
    308. "price": 95.4,
    309. "total_price": 0,
    310. "orginal_price": 115,
    311. "properties": "1215:105309781;1226:33652",
    312. "properties_name": "1215:105309781:颜色:蓝色两件套(外套+裙子);1226:33652:尺码:XL(110-120斤)",
    313. "quantity": 0,
    314. "sku_id": "103851107858"
    315. }
    316. ]
    317. },
    318. "props_list": {
    319. "1215:1115500378": "颜色:粉色两件套(外套+裙子)",
    320. "1215:1115501666": "颜色:米色两件套(外套+裙子)",
    321. "1215:105309781": "颜色:蓝色两件套(外套+裙子)",
    322. "1226:119128": "尺码:S(90斤以下)",
    323. "1226:96784": "尺码:M(90-100斤)",
    324. "1226:33651": "尺码:L(100-110斤)",
    325. "1226:33652": "尺码:XL(110-120斤)",
    326. "1226:33653": "尺码:2XL(120-130斤)",
    327. "1226:33656": "尺码:3XL(130-140斤)"
    328. },
    329. "props_img": {
    330. "1215:1115500378": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg",
    331. "1215:1115501666": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg",
    332. "1215:105309781": "https://t00img.yangkeduo.com/goods/images/2018-11-17/f0551176629bf81f25757c160198dba1.jpeg"
    333. },
    334. "property_alias": "",
    335. "props_imgs": {
    336. "prop_img": [
    337. {
    338. "properties": "1215:1115500378",
    339. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    340. },
    341. {
    342. "properties": "1215:1115500378",
    343. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    344. },
    345. {
    346. "properties": "1215:1115500378",
    347. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    348. },
    349. {
    350. "properties": "1215:1115500378",
    351. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    352. },
    353. {
    354. "properties": "1215:1115500378",
    355. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    356. },
    357. {
    358. "properties": "1215:1115500378",
    359. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/062d42b525a7c786920cbb83ac772af7.jpeg"
    360. },
    361. {
    362. "properties": "1215:1115501666",
    363. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    364. },
    365. {
    366. "properties": "1215:1115501666",
    367. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    368. },
    369. {
    370. "properties": "1215:1115501666",
    371. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    372. },
    373. {
    374. "properties": "1215:1115501666",
    375. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    376. },
    377. {
    378. "properties": "1215:1115501666",
    379. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    380. },
    381. {
    382. "properties": "1215:1115501666",
    383. "url": "https://t00img.yangkeduo.com/goods/images/2018-08-28/415bed99d5a925123d7b7c39547205de.jpeg"
    384. },
    385. {
    386. "properties": "1215:105309781",
    387. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/801a2e23140bfe76229f02aab0a8a5fe.jpeg"
    388. },
    389. {
    390. "properties": "1215:105309781",
    391. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/2f202934f16f0eee41257b77bf489262.jpeg"
    392. },
    393. {
    394. "properties": "1215:105309781",
    395. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/48b30664f0f7e526ab1b956e813f25cf.jpeg"
    396. },
    397. {
    398. "properties": "1215:105309781",
    399. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/3660b7893ca5cda1ffcea745d10b2506.jpeg"
    400. },
    401. {
    402. "properties": "1215:105309781",
    403. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/a4a5a671afbb2d8e1f4c21c0ced3bea8.jpeg"
    404. },
    405. {
    406. "properties": "1215:105309781",
    407. "url": "https://t00img.yangkeduo.com/goods/images/2018-11-17/f0551176629bf81f25757c160198dba1.jpeg"
    408. }
    409. ]
    410. },
    411. "location": null,
    412. "post_fee": 0,
    413. "seller_id": null,
    414. "shop_id": "461742",
    415. "seller_info": {
    416. "nick": "果果家气质女装",
    417. "user_num_id": "461742",
    418. "sid": "461742",
    419. "title": "",
    420. "zhuy": "http://yangkeduo.com/mall_page.html?mall_id=461742",
    421. "shop_name": "果果家气质女装"
    422. },
    423. "_ddf": "ha2",
    424. "format_check": "ok",
    425. "desc_img": [
    426. "https://t00img.yangkeduo.com/goods/images/2019-02-15/ddf6fe7b-b536-4183-932d-69a1189a3f59.png",
    427. "https://t00img.yangkeduo.com/goods/images/2018-09-02/20f659b04d3e7e5851c27ff9931c96fc.jpeg",
    428. "https://t00img.yangkeduo.com/goods/images/2019-11-14/4420a8c3-49ed-46d8-ab55-15e7a638ca31.jpg",
    429. "https://t00img.yangkeduo.com/goods/images/2018-09-02/26c3e9d5cfbaf4e8f13b2bdd38f48d71.jpeg",
    430. "https://t00img.yangkeduo.com/goods/images/2018-09-02/0aa872fa74599dad7b6aefe6b6c035c0.jpeg",
    431. "https://t00img.yangkeduo.com/goods/images/2018-09-02/6bc959e32a30424c7a5284a37676999c.jpeg",
    432. "https://t00img.yangkeduo.com/goods/images/2018-09-02/1fa9861a8c99c5e9e8119fd2239fef5a.jpeg",
    433. "https://t00img.yangkeduo.com/goods/images/2018-09-02/b62cabf1d2320c5761e3f4c15203fb20.jpeg",
    434. "https://t00img.yangkeduo.com/goods/images/2018-09-02/6f6e54376a66cbc78e16700d4c424fe1.jpeg",
    435. "https://t00img.yangkeduo.com/goods/images/2018-09-02/2f60753dfc875a6876adc35833a69d31.jpeg",
    436. "https://t00img.yangkeduo.com/goods/images/2018-09-02/ae0116e589d8de712f8dafd0c356cefe.jpeg",
    437. "https://t00img.yangkeduo.com/goods/images/2018-09-02/da910c98fcc8de1b4d2d1498cd7899fd.jpeg",
    438. "https://t00img.yangkeduo.com/goods/images/2018-09-02/140349649d8b7d08c8e88bfbbaa2f900.jpeg",
    439. "https://t00img.yangkeduo.com/goods/images/2018-09-02/a953bae2eeb7364ef3ef2976a97d07eb.jpeg",
    440. "https://t00img.yangkeduo.com/goods/images/2018-09-02/4da59828136c3b1308aad0aa990778a7.jpeg",
    441. "https://t00img.yangkeduo.com/goods/images/2018-09-02/4a365b61a80e47288c8609ccd5982396.jpeg",
    442. "https://t00img.yangkeduo.com/goods/images/2018-11-17/cd0a8a96b783a51236812ce24c59a329.jpeg",
    443. "https://t00img.yangkeduo.com/goods/images/2018-11-17/16008ac19768d05e7dee16406ff958a1.jpeg",
    444. "https://t00img.yangkeduo.com/goods/images/2018-11-17/ef1d17b69ebf9449a8bb52459b168c26.jpeg"
    445. ],
    446. "shop_item": [],
    447. "relate_items": []
    448. },
    449. "error": "",
    450. "secache": "38dc3c822554ca397f00e5e9b681e8fb",
    451. "secache_time": 1659575348,
    452. "secache_date": "2022-08-04 09:09:08",
    453. "translate_status": "",
    454. "translate_time": 0,
    455. "language": {
    456. "default_lang": "cn",
    457. "current_lang": "cn"
    458. },
    459. "reason": "",
    460. "error_code": "0000",
    461. "cache": 0,
    462. "api_info": "today:0 max:10100 all[14=0+0+14];expires:2030-12-31",
    463. "execution_time": "0.13",
    464. "server_time": "Beijing/2022-08-04 09:09:08",
    465. "client_ip": "106.6.35.19",
    466. "call_args": {
    467. "num_iid": "1620002566"
    468. },
    469. "api_type": "pinduoduo",
    470. "translate_language": "zh-CN",
    471. "translate_engine": "baidu",
    472. "server_memory": "3.23MB",
    473. "request_id": "gw-1.62eb1c34103ff",
    474. "last_id": "1126434713"
    475. }

     六、错误码解释

    状态代码(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未知错误

  • 相关阅读:
    竞赛选题 深度学习动物识别 - 卷积神经网络 机器视觉 图像识别
    【超详细Vue2教程】超详细的Vue2入门教程,让你的开发效率大大提高(自己整理的笔记,超详细!)
    交换机与路由器技术:链路聚合、生成树协议STP和生成树协议配置
    运行前端项目提示 run `npm fund` for details,如何解决?
    36李沐动手学深度学习v2/图像增广
    黔院长 | 黄帝内经:人有四经十二从!
    【git】gitlab常用命令
    算法练习4——删除有序数组中的重复项 II
    Vue3学习——pinia
    循环神经网络(RNN)实现股票预测
  • 原文地址:https://blog.csdn.net/Noah_ZX/article/details/126152729