电商平台API接口接入电商数据平台调用采集商品发货地、快递费用、物流费用、EMS费用等参数参数示例指南

taobao.item_fee-获得淘宝商品快递费用

公共参数

名称 类型 必须 描述
key String 调用key(必须以GET方式拼接在URL中)注册调用key接入api
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=572050066584&area_id=152501&sku=0

参数说明:num_iid:淘宝商品ID
area_id:区域ID
sku:是否返回指定区域SKU信息

响应参数

名称 类型 必须 示例值 描述

items

items[] 0 商品快递费

num_iid

Bigint 0 572050066584 宝贝ID

location

String 0 广东广州 发货地

area_id

Int 0 152501 区域ID

express_fee

Float 0 6.00 快递费用

ems_fee

Float 0 6.00 EMS费用

post_fee

Int 0 6.00 物流费用

PHP请求示例

&secret=<您自己的apiSecret>&num_iid=572050066584&area_id=152501&sku=0";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>

响应示例

{
    "item": {
    "num_iid": "572050066584",
    "area_id": "152501",
    "location": "广东广州",
    "shipping_to": "",
    "express_fee": "快递: ¥6.00 ",
    "ems_fee": "",
    "post_fee": "6.00"
  },
  "secache": "5ec874b9545a616c20accabd2d814eee",
  "secache_time": 1691546564,
  "secache_date": "2023-08-09 10:02:44",
  "error": "",
  "reason": "",
  "error_code": "0000",
  "cache": 0,
  "api_info": "today:62 max:10100 all[91=62+25+20];expires:2030-12-31",
  "execution_time": "0.737",
  "server_time": "Beijing/2023-08-09 10:02:44",
  "client_ip": "220.177.181.75",
  "call_args": {
    "num_iid": "572050066584",
    "area_id": "152501",
    "sku": "0"
  },
  "api_type": "taobao",
  "translate_language": "zh-CN",
  "translate_engine": "baidu",
  "server_memory": "5.98MB",
  "request_id": "gw-1.64d2f3c43f3a3",
  "last_id": "1936818063"
  }

你可能感兴趣的:(数据库,api,学习分享,java,开发语言,大数据,数据库,数据挖掘)