请求地址: https://api-gw.fan-b.com/taobao/item_sku
请求参数:num_iid=572050066584&sku_id=3880971359554&is_promotion=0
参数说明:sku_id:SKU IDnum_iid:商品IDis_promotion:是否获取取促销价
Version: Date:
-- 请求示例 url 默认请求参数已经URL编码处理 curl -i "https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0"
<?php // 请求示例 url 默认请求参数已经URL编码处理 // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.fan-b.com/help/demo/sdk/demo-sign.php $method = "GET"; $url = "https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=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)); ?>
<?php //定义缓存目录和引入文件 define("DIR_RUNTIME","runtime/"); define("DIR_ERROR","runtime/"); define("SECACHE_SIZE","0"); //SDK下载地址 https://open.fan-b.com/help/demo/sdk/onebound-api-sdk.zip include ("ObApiClient.php"); $obapi = new otao\ObApiClient(); $obapi->api_url = "http://api-gw.fan-b.com/"; $obapi->api_urls = array("http://api-gw.fan-b.com/","http://api-1.fan-b.com/");//备用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" =>"item_sku", "api_params"=>array ( 'num_iid' => '572050066584', 'sku_id' => '3880971359554', 'is_promotion' => '0', ) ) ); var_dump($api_data); ?>
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; import java.net.URL; import java.nio.charset.Charset; import org.json.JSONException; import org.json.JSONObject; import java.io.PrintWriter; import java.net.URLConnection; public class Example { private static String readAll(Reader rd) throws IOException { StringBuilder sb = new StringBuilder(); int cp; while ((cp = rd.read()) != -1) { sb.append((char) cp); } return sb.toString(); } public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException { URL realUrl = new URL(url); URLConnection conn = realUrl.openConnection(); conn.setDoOutput(true); conn.setDoInput(true); PrintWriter out = new PrintWriter(conn.getOutputStream()); out.print(body); out.flush(); InputStream instream = conn.getInputStream(); try { BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8"))); String jsonText = readAll(rd); JSONObject json = new JSONObject(jsonText); return json; } finally { instream.close(); } } public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException { URL realUrl = new URL(url); URLConnection conn = realUrl.openConnection(); InputStream instream = conn.getInputStream(); try { BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8"))); String jsonText = readAll(rd); JSONObject json = new JSONObject(jsonText); return json; } finally { instream.close(); } } public static void main(String[] args) throws IOException, JSONException { // 请求示例 url 默认请求参数已经URL编码处理 String url = "https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0"; JSONObject json = getRequestFromUrl(url); System.out.println(json.toString()); } }
//using System.Net.Security; //using System.Security.Cryptography.X509Certificates; private const String method = "GET"; static void Main(string[] args) { String bodys = ""; // 请求示例 url 默认请求参数已经做URL编码 String url = "https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0"; HttpWebRequest httpRequest = null; HttpWebResponse httpResponse = null; if (url.Contains("https://")) { ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult); httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url)); } else { httpRequest = (HttpWebRequest)WebRequest.Create(url); } httpRequest.Method = method; if (0 < bodys.Length) { byte[] data = Encoding.UTF8.GetBytes(bodys); using (Stream stream = httpRequest.GetRequestStream()) { stream.Write(data, 0, data.Length); } } try { httpResponse = (HttpWebResponse)httpRequest.GetResponse(); } catch (WebException ex) { httpResponse = (HttpWebResponse)ex.Response; } Console.WriteLine(httpResponse.StatusCode); Console.WriteLine(httpResponse.Method); Console.WriteLine(httpResponse.Headers); Stream st = httpResponse.GetResponseStream(); StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8")); Console.WriteLine(reader.ReadToEnd()); Console.WriteLine("\n"); } public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors) { return true; }
# 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.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0" headers = { "Accept-Encoding": "gzip", "Connection": "close" } if __name__ == "__main__": r = requests.get(url, headers=headers) json_obj = r.json() print(json_obj)
url := fmt.Sprintf("https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0", params) req, err := http.NewRequest("GET", url, nil) if err != nil { panic(err) } req.Header.Set("Authorization", apiKey) client := &http.Client{} resp, err := client.Do(req) if err != nil { panic(err) } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if err != nil { panic(err) } fmt.Println(string(body))
fetch('https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({"num_iid":"572050066584","sku_id":"3880971359554","is_promotion":"0"})// request parameters here }) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error(error));
<script src="js/obapi.js"></script> <script type="text/javascript"> obAPI.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 api_url: "https://api-gw.fan-b.com", // api_key: "<您自己的apiKey>", // 必填, api_secret: "<您自己的apiSecret>", // lang: "cn", // timestamp: "", // 必填,生成签名的时间戳 nonceStr: "", // 必填,生成签名的随机串 signature: "",// 必填,签名 jsApiList: [] // 必填,需要使用的JS接口列表 }); </script> <div id="api_data_box"></div> <script type="text/javascript"> obAPI.exec( { "api_type":"taobao", "api_name" : "item_sku", "api_params": {"num_iid":"572050066584","sku_id":"3880971359554","is_promotion":"0"}//num_iid=572050066584&sku_id=3880971359554&is_promotion=0,#具体参数请参考文档说明 }, function(e){ document.querySelector("#api_data_box").innerHTML=JSON.stringify(e) } ); </script>
require "net/http" require "uri" url = URI("https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0") http = Net::HTTP.new(url.host, url.port) http.use_ssl = true request = Net::HTTP::Get.new(url) response = http.request(request) puts response.read_body
import Foundation let url = URL(string: "https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0")! let task = URLSession.shared.dataTask(with: url) { data, response, error in guard let data = data else { print("Error: No data was returned") return } if let data = String(data: data, encoding: .utf8) { print(data) } } task.resume()
NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0"]; NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0]; [request setHTTPMethod:@"GET"]; NSError *error; NSURLResponse *response; NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error]; NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; NSLog(@"%@",result);
#include<stdio.h> #include <stdlib.h> #include<string.h> #include<curl/curl.h> int main(){ CURL *curl; CURLcode res; struct curl_slist *headers=NULL; char url[] = "https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0"; curl_global_init(CURL_GLOBAL_ALL); curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL,url); headers = curl_slist_append(headers, "Content-Type: application/json"); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); res = curl_easy_perform(curl); if(res != CURLE_OK){ printf("curl_easy_perform(): %s\n",curl_easy_strerror(res)); } curl_easy_cleanup(curl); } curl_global_cleanup(); return 0; }
#include<iostream> #include<string> #include<curl/curl.h> using namespace std; static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream) { std::size_t realSize = size *nmemb; auto *realPtr = reinterpret_cast<char *>(ptr); for (std::size_t i=0;i<realSize;++i) { *(stream) += *(realPtr + i); } return realSize; } int main(){ CURL *curl; CURLcode result; string readBuffer; curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0"); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer); result = curl_easy_perform(curl); if(result == CURLE_OK) { cout<<readBuffer<<endl; }else{ cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl; } curl_easy_cleanup(curl); } return 0; }
const https = require("https"); https.get("https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0", (resp) => { let data = ""; resp.on("data", (chunk) => { data += chunk; }); resp.on("end", () => { console.log(data); }); }).on("error", (err) => { console.log("Error: " + err.message); });
import java.net.HttpURLConnection import java.net.URL fun main() { val url = URL("https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0") val con = url.openConnection() as HttpURLConnection con.requestMethod = "GET" val responseCode = con.responseCode if (responseCode == HttpURLConnection.HTTP_OK) { // success val inputLine = con.inputStream.bufferedReader().use { it.readText() } println(inputLine) } else { println("GET request failed") } }
use std::io::{self, Read}; use reqwest; fn main() -> io::Result<()> { let mut resp = reqwest::get("https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0")?; let mut content = String::new(); resp.read_to_string(&mut content)?; println!("{}", content); Ok(()) }
library(httr) r <- GET("https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0") content(r)
url = "https://api-gw.fan-b.com/taobao/item_sku/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=572050066584&sku_id=3880971359554&is_promotion=0"; response = webread(url); disp(response);
{ "item": { "num_iid": "722328050704", "item_name": "拖鞋情侣家居一对浴室洗澡防滑托鞋女士夏季室内家用时尚外穿凉拖", "item_url": "https://item.taobao.com/item.htm?id=722328050704", "cat_id": 50009049, "root_cat_id": "", "cat_name": { "items": { "item": [ { "id": "50009049", "name": "鞋带", "pid": "50009045", "root_id": "50010404", "sub": null } ] } }, "root_cat_name": { "items": { "item": [ { "id": "1", "pid": "0", "root_id": "0", "name": "游戏话费", "note": "virtual" }, { "id": "2", "pid": "0", "root_id": "0", "name": "服装鞋包", "note": "virtual" }, { "id": "3", "pid": "0", "root_id": "0", "name": "手机数码", "note": "virtual" }, { "id": "4", "pid": "0", "root_id": "0", "name": "家用电器", "note": "virtual" }, { "id": "5", "pid": "0", "root_id": "0", "name": "美妆饰品", "note": "virtual" }, { "id": "6", "pid": "0", "root_id": "0", "name": "母婴用品", "note": "virtual" }, { "id": "7", "pid": "0", "root_id": "0", "name": "家居建材", "note": "virtual" }, { "id": "8", "pid": "0", "root_id": "0", "name": "百货食品", "note": "virtual" }, { "id": "9", "pid": "0", "root_id": "0", "name": "运动户外", "note": "virtual" }, { "id": "10", "pid": "0", "root_id": "0", "name": "文化玩乐", "note": "virtual" }, { "id": "12", "pid": "0", "root_id": "0", "name": "其他商品", "note": "" }, { "id": "13", "pid": "0", "root_id": "0", "name": "汽配摩托", "note": "virtual" }, { "id": "98", "pid": "0", "root_id": "0", "name": "包装", "note": "" }, { "id": "2128", "pid": "0", "root_id": "0", "name": "已删除", "note": "" }, { "id": "50004958", "pid": "0", "root_id": "0", "name": "移动/联通/电信充值中心", "note": "" }, { "id": "50007216", "pid": "0", "root_id": "0", "name": "鲜花速递/花卉仿真/绿植园艺", "note": "" }, { "id": "50008075", "pid": "0", "root_id": "0", "name": "餐饮美食卡券", "note": "" }, { "id": "50008141", "pid": "0", "root_id": "0", "name": "酒类", "note": "" }, { "id": "50008907", "pid": "0", "root_id": "0", "name": "手机号码/套餐/增值业务", "note": "" }, { "id": "50014811", "pid": "0", "root_id": "0", "name": "网店/网络服务/软件", "note": "" }, { "id": "50014927", "pid": "0", "root_id": "0", "name": "教育培训", "note": "" }, { "id": "50017652", "pid": "0", "root_id": "0", "name": "服务市场", "note": "" }, { "id": "50019095", "pid": "0", "root_id": "0", "name": "线下消费卡", "note": "" }, { "id": "50023575", "pid": "0", "root_id": "0", "name": "房产/租房/新房/二手房/委托服务", "note": "" }, { "id": "50023717", "pid": "0", "root_id": "0", "name": "互联网医疗/保健用品", "note": "" }, { "id": "50023721", "pid": "0", "root_id": "0", "name": "医疗器械", "note": "" }, { "id": "50023722", "pid": "0", "root_id": "0", "name": "隐形眼镜/护理液", "note": "" }, { "id": "50023724", "pid": "0", "root_id": "0", "name": "其他", "note": "" }, { "id": "50023878", "pid": "0", "root_id": "0", "name": "自用闲置转让", "note": "" }, { "id": "50024153", "pid": "0", "root_id": "0", "name": "计生用品", "note": "" }, { "id": "50024186", "pid": "0", "root_id": "0", "name": "保险", "note": "" }, { "id": "50024612", "pid": "0", "root_id": "0", "name": "阿里健康送药服务", "note": "" }, { "id": "50025004", "pid": "0", "root_id": "0", "name": "个性定制/设计服务/DIY", "note": "" }, { "id": "50025110", "pid": "0", "root_id": "0", "name": "电影/演出/体育赛事", "note": "" }, { "id": "50025111", "pid": "0", "root_id": "0", "name": "本地化生活服务", "note": "" }, { "id": "50025618", "pid": "0", "root_id": "0", "name": "理财", "note": "" }, { "id": "50025968", "pid": "0", "root_id": "0", "name": "司法拍卖拍品专用", "note": "" }, { "id": "50026535", "pid": "0", "root_id": "0", "name": "医疗及健康服务", "note": "" }, { "id": "50026555", "pid": "0", "root_id": "0", "name": "购物提货券", "note": "" }, { "id": "50158001", "pid": "0", "root_id": "0", "name": "网络店铺代金/优惠券", "note": "" }, { "id": "50230002", "pid": "0", "root_id": "0", "name": "服务商品", "note": "" }, { "id": "50734010", "pid": "0", "root_id": "0", "name": "资产", "note": "" }, { "id": "50802001", "pid": "0", "root_id": "0", "name": "数字阅读", "note": "" }, { "id": "120886001", "pid": "0", "root_id": "0", "name": "公益", "note": "" }, { "id": "120894001", "pid": "0", "root_id": "0", "name": "淘女郎", "note": "" }, { "id": "120950002", "pid": "0", "root_id": "0", "name": "天猫点券", "note": "" }, { "id": "121266001", "pid": "0", "root_id": "0", "name": "众筹", "note": "" }, { "id": "121380001", "pid": "0", "root_id": "0", "name": "机票/小交通/增值服务", "note": "" }, { "id": "121536003", "pid": "0", "root_id": "0", "name": "数字娱乐", "note": "" }, { "id": "121536007", "pid": "0", "root_id": "0", "name": "全球购代购市场", "note": "" }, { "id": "121938001", "pid": "0", "root_id": "0", "name": "淘点点预定点菜", "note": "" }, { "id": "121940001", "pid": "0", "root_id": "0", "name": "淘点点现金券", "note": "" }, { "id": "122966004", "pid": "0", "root_id": "0", "name": "处方药", "note": "" }, { "id": "123500005", "pid": "0", "root_id": "0", "name": "资产(政府类专用)", "note": "" }, { "id": "123536002", "pid": "0", "root_id": "0", "name": "阿里通信专属类目", "note": "" }, { "id": "123690003", "pid": "0", "root_id": "0", "name": "精制中药材", "note": "" }, { "id": "124024001", "pid": "0", "root_id": "0", "name": "农业生产资料(农村淘宝专用)", "note": "" }, { "id": "124242008", "pid": "0", "root_id": "0", "name": "智能设备", "note": "" }, { "id": "124466001", "pid": "0", "root_id": "0", "name": "农用物资", "note": "" }, { "id": "124468001", "pid": "0", "root_id": "0", "name": "农机/农具/农膜", "note": "" }, { "id": "124470001", "pid": "0", "root_id": "0", "name": "畜牧/养殖物资", "note": "" }, { "id": "124470006", "pid": "0", "root_id": "0", "name": "整车(经销商)", "note": "" }, { "id": "124568010", "pid": "0", "root_id": "0", "name": "室内设计师", "note": "" }, { "id": "124698018", "pid": "0", "root_id": "0", "name": "装修服务", "note": "" }, { "id": "124750013", "pid": "0", "root_id": "0", "name": "俪人购(俪人购专用)", "note": "" }, { "id": "124844002", "pid": "0", "root_id": "0", "name": "拍卖会专用", "note": "" }, { "id": "124868003", "pid": "0", "root_id": "0", "name": "盒马", "note": "" }, { "id": "124912001", "pid": "0", "root_id": "0", "name": "合约机", "note": "" }, { "id": "125102006", "pid": "0", "root_id": "0", "name": "到家业务", "note": "" }, { "id": "125406001", "pid": "0", "root_id": "0", "name": "享淘卡", "note": "" }, { "id": "126252002", "pid": "0", "root_id": "0", "name": "门店O2O", "note": "" }, { "id": "126488005", "pid": "0", "root_id": "0", "name": "天猫零售O2O", "note": "" }, { "id": "126488008", "pid": "0", "root_id": "0", "name": "阿里健康B2B平台", "note": "" }, { "id": "126602002", "pid": "0", "root_id": "0", "name": "生活娱乐充值", "note": "" }, { "id": "126700003", "pid": "0", "root_id": "0", "name": "家装灯饰光源", "note": "" }, { "id": "126762001", "pid": "0", "root_id": "0", "name": "美容美体仪器", "note": "" }, { "id": "127076003", "pid": "0", "root_id": "0", "name": "平台充值活动(仅内部店铺)", "note": "" }, { "id": "127110013", "pid": "0", "root_id": "0", "name": "疫苗服务", "note": "" }, { "id": "127442006", "pid": "0", "root_id": "0", "name": "纺织面料/辅料/配套", "note": "" }, { "id": "127450004", "pid": "0", "root_id": "0", "name": "金属材料及制品", "note": "" }, { "id": "127452002", "pid": "0", "root_id": "0", "name": "橡塑材料及制品", "note": "" }, { "id": "127458007", "pid": "0", "root_id": "0", "name": "搬运/仓储/物流设备", "note": "" }, { "id": "127484003", "pid": "0", "root_id": "0", "name": "润滑/胶粘/试剂/实验室耗材", "note": "" }, { "id": "127492006", "pid": "0", "root_id": "0", "name": "标准件/零部件/工业耗材", "note": "" }, { "id": "127508003", "pid": "0", "root_id": "0", "name": "机械设备", "note": "" }, { "id": "127588002", "pid": "0", "root_id": "0", "name": "阿里云云市场", "note": "" }, { "id": "127876007", "pid": "0", "root_id": "0", "name": "清洗/食品/商业设备", "note": "" }, { "id": "127878006", "pid": "0", "root_id": "0", "name": "新制造", "note": "" }, { "id": "127882008", "pid": "0", "root_id": "0", "name": "菜鸟驿站生活店", "note": "" }, { "id": "127924022", "pid": "0", "root_id": "0", "name": "零售通", "note": "" }, { "id": "201136401", "pid": "0", "root_id": "0", "name": "闲鱼优品", "note": "" }, { "id": "201149009", "pid": "0", "root_id": "0", "name": "旅行购物", "note": "" }, { "id": "201156706", "pid": "0", "root_id": "0", "name": "商务/设计服务", "note": "" }, { "id": "201160314", "pid": "0", "root_id": "0", "name": "口碑/饿了么本地生活", "note": "" }, { "id": "201162107", "pid": "0", "root_id": "0", "name": "汽车零部件/养护/美容/维保", "note": "" }, { "id": "201173506", "pid": "0", "root_id": "0", "name": "兑换卡", "note": "" }, { "id": "201175701", "pid": "0", "root_id": "0", "name": "淘小铺", "note": "" }, { "id": "201207402", "pid": "0", "root_id": "0", "name": "婴童尿裤", "note": "" }, { "id": "201230407", "pid": "0", "root_id": "0", "name": "体检/医疗保障卡", "note": "" }, { "id": "201236409", "pid": "0", "root_id": "0", "name": "店铺经营主体变更", "note": "" }, { "id": "201273575", "pid": "0", "root_id": "0", "name": "OTC药品/国际医药", "note": "" }, { "id": "201304427", "pid": "0", "root_id": "0", "name": "民生服务", "note": "" }, { "id": "201307427", "pid": "0", "root_id": "0", "name": "购物金", "note": "" }, { "id": "201310232", "pid": "0", "root_id": "0", "name": "能源出行", "note": "" }, { "id": "201402901", "pid": "0", "root_id": "0", "name": "商业加盟", "note": "" }, { "id": "201412401", "pid": "0", "root_id": "0", "name": "钉钉电商", "note": "" } ] } } }, "error": "", "reason": "", "error_code": "0000", "cache": 0, "api_info": "today:47 max:10000 all[2543=47+13+2483];expires:2030-10-30", "execution_time": "1.732", "server_time": "Beijing/2024-10-21 11:30:36", "client_ip": "61.131.237.50", "call_args": [], "api_type": "taobao", "translate_language": "zh-CN", "translate_engine": "", "server_memory": "1.02MB", "request_id": "gw-4.6715cada7c020", "last_id": "3627693474" }
{ "error": "item-not-found", "reason": "商品没找到", "error_code": "2000", "success": 0, "cache": 0, "api_info": "today:0 max:10000", "execution_time": 0.081, "server_time": "Beijing/2020-06-10 23:44:00", "call_args": [], "api_type": "taobao", "request_id": "1ee0ffc041242"}