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

一、获取购买到的淘宝商品订单详情API接口,买家订单API接口,买家订单详情API接口代码分享

1.公共参数:

名称 类型 必须 描述
key String 调用key(必须以GET方式拼接在URL中)
secret String 调用密钥 (点击可以获取key和secret)
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.请求参数:

请求参数:order_id=&onlystatus=0 
参数说明:order_id:订单ID
token:SaaS授权

3.响应参数:

名称 类型 必须 示例值 描述

take_baby

String 0

payment_alipay

String 0 支付宝

seller_delivery

String 0 卖家收货地址

confirm_time

String 0 确认时间

evaluate_time

String 0 评价时间

delivery_countdown

String 0 商品到达剩余时间

trade_status

String 0 订单状态: 交易成功 交易状态

delivery_way

String 0 logistic 送货方式

logistics_company

String 0 顺丰速运 物流公司

waybill

Bigint 0 76743627xxxx 运单号码

logistics_follow

String 0 顺丰速运 物流跟踪

delivery_addr

Bigint 0 peng,19900001111,江西省 新余市 渝水区 城北街道 人民北路313号 ,338000 收货地址

buyer_message

String 0 - 买家备注

seller_name

String 0 selected官方旗舰店 卖家昵称

seller_real_name

String 0 绫致时装销售(天津)有限公司 卖家实名

seller_city

String 0 天津 卖家所在城市

seller_phone

String 0 400-8001234 客服电话

order_num

Bigint 0 298482016040012345 订单号

alipay_num

Bigint 0 2018121622001168940583001234 支付宝订单号

goods

Mix 0 [{"auction_url": "//trade.taobao.com/trade/detail/tradeSnap.htm?tradeID=29848201604571xxxx", "goods_id": null, "goods_img": "//img.alicdn.com/imgextra/i1/849905958/O1CN011tsoDu6YZLBaF7F_!!849905958.jpg", "goods_name": "Selected/斯莱德马海毛羊毛混纺色块男士毛衫", "goods_info": [{"name": "颜色", "value": "碳花灰色CHARCOAL MELANGE"}], "goods_status": "交易成功", "unit_price": "349.50", "goods_count": "1", "discount": null }] 商品信息

goods_money

String 0 ¥100.00 商品金额

logistics_money

String 0 ¥0.00 物流费用

total_money

String 0 ¥100.00 总金额

real_money

String 0 ¥100.00 实际支付金额

stepbar

Mix 0 {"current": 3, "options": [{"content": "拍下商品", "time": "2018-12-16 22:37:58"}, {"content": "付款到支付宝", "time": "2018-12-16 22:38:31"}, {"content": "卖家发货", "time": "2018-12-17 09:19:55"}, {"content": "确认收货", "time": "2019-01-01 09:20:07"}, {"content": "评价"} ]] 步骤

4. 请求示例(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://wx19970108018/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接口开发系列,数据分析,大数据,爬虫,产品运营,流量运营)