拼多多API介面:拼多多APP根據ID取商品詳情原資料

JenniferAB發表於2023-03-01

item_get_app- 根據ID取商品詳情原資料 

請求示例(程式碼展示) 

# 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://伺服器地址/pinduoduo/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)

響應示例

"item": {
		"destination_type": 2,
		"destination_url": "order_checkout.html",
		"goods": {
			"brand_id": "",
			"cat_id": 8484,
			"cat_id_1": 8439,
			"cat_id_2": 8456,
			"cat_id_3": 8484,
			"cat_id_4": 0,
			"check_quantity": 1,
			"country": "",
			"decoration": [
				{
					"contents": [
						{
							"height": 400,
							"img_url": "
							"width": 750
						}
					],
					"enable_share": 0,
					"floor_id": 18102965153,
					"key": "DecImage",
					"priority": 0,
					"type": "text"
				},
				{
					"contents": [
						{
							"height": 330,
							"img_url": "https://t00img.yangkeduo.com/goods/images/2019-02-15/ddf6fe7b-b536-4183-932d-69a1189a3f59.png",
							"width": 750
						}
					],
					"enable_share": 1,
					"floor_id": 18102965154,
					"key": "DecImage",
					"priority": 1,
					"type": "image"
				},
				{
					"contents": [
						{
							"height": 1500,
							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/20f659b04d3e7e5851c27ff9931c96fc.jpeg",
							"width": 750
						}
					],
					"enable_share": 1,
					"floor_id": 18102965155,
					"key": "DecImage",
					"priority": 2,
					"type": "image"
				},
				{
					"contents": [
						{
							"height": 1058,
							"img_url": "https://t00img.yangkeduo.com/goods/images/2019-11-14/4420a8c3-49ed-46d8-ab55-15e7a638ca31.jpg",
							"width": 760
						}
					],
					"enable_share": 1,
					"floor_id": 18102965156,
					"key": "DecImage",
					"priority": 3,
					"type": "image"
				},
				{
					"contents": [
						{
							"height": 1500,
							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/26c3e9d5cfbaf4e8f13b2bdd38f48d71.jpeg",
							"width": 750
						}
					],
					"enable_share": 1,
					"floor_id": 18102965157,
					"key": "DecImage",
					"priority": 4,
					"type": "image"
				},
				{
					"contents": [
						{
							"height": 1500,
							"img_url": "https://t00img.yangkeduo.com/goods/images/2018-09-02/0aa872fa74599dad7b6aefe6b6c035c0.jpeg",
							"width": 750
						}
					],
					"enable_share": 1,
					"floor_id": 18102965158,
					"key": "DecImage",
					"priority": 5,
					"type": "image"
				},

進入測試頁:

公共引數

名稱 型別 必須 描述
key String 呼叫key(必須以GET方式拼接在URL中)
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版本

請求引數

請求引數:num_iid=1620002566

引數說明:num_iid:商品ID ;

響應引數

Version: Date:

名稱 型別 必須 示例值 描述
item
Mix 0
獲得拼多多app商品詳情原資料
item
Mix 0 [] 商品資訊
SkuMaps
Mix 0 [] sku資訊
more
Mix 0 [] 引數多不一一介紹,詳細請看介面返回

對更多電商API有興趣的朋友,歡迎評論區交流或v15870092527.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70026969/viewspace-2937699/,如需轉載,請註明出處,否則將追究法律責任。

相關文章