custom自定义API操作
buyer_order_list获取购买到的商品订单列表
buyer_order_detail获取购买到的商品订单详情
buyer_order_express获取购买到的商品订单物流
buyer_address_list收货地址列表
buyer_address_add添加收货地址
buyer_info买家信息
buyer_token买家token
seller_order_list获取卖出的商品订单列表
seller_cat_props商品分类属性
请求地址: https://api-gw.onebound.cn/taobao/buyer_cart_list
名称 | 类型 | 必须 | 描述 |
---|---|---|---|
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版本 |
2、请求参数
请求参数:page=
参数说明:page:页码
token:SaaS授权
3、响应参数
名称 | 类型 | 必须 | 示例值 | 描述 |
---|---|---|---|---|
cart_id | Bigint | 0 | 1055921809617 | 购物车商品ID |
num_iid | Bigint | 0 | 544135010416 | 商品ID |
title | String | 0 | Philips/飞利浦 DLK35002 车载手机支架 多功能吸盘式汽车手机座 | 商品标题 |
pic_url | String | 0 | //img.alicdn.com/bao/uploaded/i2/2934435917/TB2Ite9tlsmBKNjSZFFXXcT9VXa_!!2934435917-0-item_pic.jpg | 宝贝图片 |
detail_url | String | 0 | //detail.tmall.com/item.htm?id=544135010416 | 宝贝链接 |
promotion_price | Int | 0 | 69 | 优惠价 |
price | Int | 0 | 99 | 价格 |
num | Int | 0 | 1 | 数量 |
Mix | 0 | {"颜色分类": "黑色"} | 商品规格列表 | |
is_tmall | Boolean | 0 | true | 是否天猫 |
seller_info | Mix | 0 | {"shop_type": "B", "title": "飞利浦淘参谋专卖", "sid": 165655803, "user_num_id": "2934435917", "zhuy": "//store.taobao.com/shop/view_shop.htm?user_number_id=2934435917"} | 卖家信息 |
4、请求示例
- <?php
- //定义缓存目录和引入文件
- define("DIR_RUNTIME","runtime/");
- define("DIR_ERROR","runtime/");
- define("SECACHE_SIZE","0");
- //SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
- include ("ObApiClient.php");
-
- $obapi = new otao\ObApiClient();
- $obapi->api_url = "http://api-gw.onebound.cn/";
- $obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
- $obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
- $obapi->api_key = "<您自己的apiKey>";
- $obapi->api_secret = "<您自己的apiSecret>";
- $obapi->api_version ="";
- $obapi->secache_path ="runtime/";
- $obapi->secache_time ="86400";
- $obapi->cache = true;
-
- $api_data = $obapi->exec(
- array(
- "api_type" =>"taobao",
- "api_name" =>"buyer_cart_list",
- "api_params"=>array (
- 'page' => '',
- )
- )
- );
- var_dump($api_data);
- ?>