淘宝官方订单 API 接口,获取购买到的商品订单详情

淘宝/天猫获取购买到的商品订单详情 API 返回值说明

buyer_order_detail-获取购买到的商品订单详情

测试接口

公共参数

名称 类型 必须 描述
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版本

请求参数

请求参数:order_id=&onlystatus=0

参数说明:order_id:订单ID
token:SaaS授权

响应参数

Version: Date:

淘宝官方订单 API 接口,获取购买到的商品订单详情_第1张图片

淘宝官方订单 API 接口,获取购买到的商品订单详情_第2张图片 

 请求示例

Curl PHP PHPsdk JAVA C# Python

# 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/taobao/buyer_order_detail/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&order_id=&onlystatus=0"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)

更多淘宝官方订单接口列表

 

淘宝官方订单 API 接口,获取购买到的商品订单详情_第3张图片

你可能感兴趣的:(API,爬虫,PHP,servlet,json,爬虫,获取购买到的商品订单详情,API)