请求地址: https://api-gw.onebound.cn/taobao/item_get_web
请求参数:num_iid=984661235848
参数说明:num_iid:淘宝商品ID
Version:1.0.0-7.0.2 Date:2025-12-30
-- 请求示例 url 默认请求参数已经URL编码处理 curl -i "https://api-gw.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848"
<?php // 请求示例 url 默认请求参数已经URL编码处理 // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php $method = "GET"; $url = "https://api-gw.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848"; $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.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" =>"item_get_web", "api_params"=>array ( 'num_iid' => '984661235848', ) ) ); 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848"; 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848"; 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848" 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848", 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({"num_iid":"984661235848"})// 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.onebound.cn", // 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_get_web", "api_params": {"num_iid":"984661235848"}//num_iid=984661235848,#具体参数请参考文档说明 }, function(e){ document.querySelector("#api_data_box").innerHTML=JSON.stringify(e) } ); </script>
require "net/http" require "uri" url = URI("https://api-gw.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848") 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848")! 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848"]; 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848"; 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848"); 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848", (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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848") 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.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848")?; let mut content = String::new(); resp.read_to_string(&mut content)?; println!("{}", content); Ok(()) }
library(httr) r <- GET("https://api-gw.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848") content(r)
url = "https://api-gw.onebound.cn/taobao/item_get_web/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=984661235848"; response = webread(url); disp(response);
{ "item": { "title": "美的空调2匹大1.5匹1p挂机酷省电一级能效家用智能变频官方旗舰店", "itemId": "742444177612", "seller": { "sellerId": "2215623891335", "shopName": "美的知子专卖店", "shopId": 190083758, "evaluates": [ ], "fansCount": "2068", "categoryId": "350401", "isTmall": true }, "imageFrames": [ "//img.alicdn.com/bao/uploaded/O1CN01HJCZKd1y42yu0HufU_!!6000000006524-0-yinhe.jpg", "//img.alicdn.com/i1/2215623891335/O1CN01BzYqAQ1LjTnmfMoW2_!!2215623891335.jpg", "//img.alicdn.com/i2/2215623891335/O1CN01ipVD6j1LjTlxQINGF_!!2215623891335.jpg", "//img.alicdn.com/i2/2215623891335/O1CN01p7U3GD1LjTnkQq98V_!!2215623891335.jpg", "//img.alicdn.com/i4/2215623891335/O1CN01UabCXh1LjTnnNH3ah_!!2215623891335.jpg" ], "sales": "500+", "rate_sales": 0, "skuBase": { "skus": [ { "propPath": "1627207:39101904484", "skuId": "6158929174825" }, { "propPath": "1627207:39101904485", "skuId": "6158929174826" }, { "propPath": "1627207:40577158536", "skuId": "6158929174827" }, { "propPath": "1627207:40677411482", "skuId": "6158929174828" }, { "propPath": "1627207:40677411483", "skuId": "6158929174829" }, { "propPath": "1627207:40677411484", "skuId": "6158929174830" } ], "props": [ { "values": [ { "vid": "39101904485", "image": "//img.alicdn.com/i3/2215623891335/O1CN013UGeHK1LjTqtIQFPA_!!2215623891335.jpg", "sortOrder": 8, "name": "大1匹酷省电【省电24%】", "tags": [ "最低价" ] }, { "vid": "40577158536", "image": "//img.alicdn.com/i4/2215623891335/O1CN01p9YF821LjTqunOmTc_!!2215623891335.jpg", "sortOrder": 0, "name": "2匹酷省电【省电28%】" }, { "vid": "40677411483", "image": "//img.alicdn.com/i2/2215623891335/O1CN01PlvNjv1LjTqv4zGGv_!!2215623891335.jpg", "sortOrder": 0, "name": "大1.5匹酷省电-Pro【省电37%】" }, { "vid": "40677411482", "image": "//img.alicdn.com/i4/2215623891335/O1CN01oY6rBn1LjTqW2wJd8_!!2215623891335.jpg", "sortOrder": 0, "name": "大1.5匹酷省电2025版【省电25%】" }, { "vid": "39101904484", "image": "//img.alicdn.com/i4/2215623891335/O1CN01jDDjvj1LjTqozBPl3_!!2215623891335.jpg", "sortOrder": 0, "name": "大1.5匹酷省电【省电25%】" }, { "vid": "40677411484", "image": "//img.alicdn.com/i3/2215623891335/O1CN01fxZlHF1LjTqvBZe06_!!2215623891335.jpg", "sortOrder": 0, "name": "大1匹酷省电-Pro【省电40%】" } ], "name": "空调面板颜色", "hasImage": true, "pid": "1627207" } ] }, "provcity": "江苏 南京", "price": { "6158929174827": { "original": 3924, "preferential": 4999, "coupon": "淘金币频道抵扣49.99元起;限时优惠1075元;包邮;" }, "6158929174826": { "original": 2749, "preferential": 4999, "coupon": "淘金币频道抵扣49.99元起;限时优惠2250元;包邮;" }, "6158929174829": { "original": 3124, "preferential": 4999, "coupon": "淘金币频道抵扣49.99元起;限时优惠1875元;包邮;" }, "6158929174828": { "original": 2874, "preferential": 4999, "coupon": "淘金币频道抵扣49.99元起;限时优惠2125元;包邮;" }, "6158929174825": { "original": 2874, "preferential": 4999, "coupon": "淘金币频道抵扣49.99元起;限时优惠2125元;包邮;" }, "6158929174830": { "original": 2874, "preferential": 4999, "coupon": "淘金币频道抵扣49.99元起;限时优惠2125元;包邮;" } }, "coupons": [ "包邮", "淘金币频道抵扣1%起", "淘金币频道抵扣49.99元起", "限时优惠1875元", "限时优惠2125元", "限时优惠1075元", "限时优惠2250元" ], "props_name": [ { "value": "4600W", "key": "制冷量" }, { "value": "遥控", "key": "操控方式" }, { "value": "2023-02", "key": "上市时间" }, { "value": "全国联保", "key": "售后服务内容" }, { "value": "20230417-611100-64701681710960073", "key": "能效备案号" }, { "value": "ABS塑料", "key": "面板材质" }, { "value": "6300W", "key": "制热量" }, { "value": "1220W", "key": "制冷功率" }, { "value": "智能变频", "key": "变频技术类型" }, { "value": "54dB", "key": "室外机噪音" }, { "value": "72个月", "key": "整机质保期(年)" }, { "value": "6年", "key": "压缩机质保期(年)" }, { "value": "30kg", "key": "室外机净质量" }, { "value": "857x555x328mm", "key": "外机尺寸" }, { "value": "910x615x415mm", "key": "外机包装尺寸" }, { "value": "支持同城配送", "key": "同城送货服务" }, { "value": "一级", "key": "能效等级" }, { "value": "12kg", "key": "室内机净质量" }, { "value": "800W", "key": "电辅加热功率" }, { "value": "GB21455-2019", "key": "CCC认证编号" }, { "value": "19㎡-29㎡", "key": "适用面积" }, { "value": "43dB", "key": "室内机噪音" }, { "value": "1690W", "key": "制热功率" }, { "value": "898x319x205mm", "key": "内机尺寸" }, { "value": "酷省电", "key": "系列" }, { "value": "大1.5匹酷省电2025版【省电25%】 大1.5匹酷省电【省电25%】 大1.5匹酷省电-Pro【省电37%】 2匹酷省电【省电28%】 大1匹酷省电-Pro【省电40%】 大1匹酷省电【省电24%】", "key": "空调面板颜色" }, { "value": "900立方米/小时", "key": "内机循环风量" }, { "value": "Midea/美的", "key": "空调品牌" }, { "value": "KFR-46GW/N8KS1-1", "key": "美的空调型号" }, { "value": "变频", "key": "工作方式" }, { "value": "180°送风", "key": "送风方式" }, { "value": "客厅", "key": "适用场景" }, { "value": "6层", "key": "外机堆码层数极限" }, { "value": "其他智能", "key": "智能类型" }, { "value": "小2匹", "key": "空调功率" }, { "value": "节能", "key": "功能" }, { "value": "12层", "key": "内机堆码层数极限" }, { "value": "壁挂式", "key": "类型" }, { "value": "广东美的制冷设备有限公司", "key": "生产企业" }, { "value": "975x385x280mm", "key": "内机包装尺寸" }, { "value": "壁挂式", "key": "空调类型" }, { "value": "冷暖电辅", "key": "冷暖类型" }, { "value": "15kg", "key": "内机毛重" }, { "value": "34kg", "key": "外机毛重" }, { "value": "220V/50HZ", "key": "电压/频率" } ], "desc": "<div style=\"width: 750.0px;height: auto;overflow: hidden;\"><div style=\"width: 750.0px;height: auto;overflow: hidden;\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i3/2215623891335/O1CN01UqLcHH1LjTqVwjAb9_!!2215623891335.jpg\"><img usemap=\"#customizeHyperlinks-2\" style=\"display: block;margin-top: -750.0px;width: 750.0px;height: 750.0px;\" src=\"//gtms01.alicdn.com/tps/i1/TB1AHXiGXXXXXXAXVXX.uTD.FXX-10-10.png\"><map name=\"customizeHyperlinks-2\"><area shape=\"rect\" coords=\"24,24,811,729\"></map><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i2/2215623891335/O1CN01edW2IL1LjTqQB6Woj_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i2/2215623891335/O1CN01PtKBQ71LjTqW3PzGh_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i1/2215623891335/O1CN01l7j0bw1LjTqVWy9uN_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN010P8nvQ1LjTnl56kP2_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i2/2215623891335/O1CN01wC0Shm1LjTnmfW4rT_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i1/2215623891335/O1CN017RRiSe1LjTqWmhlIF_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i1/2215623891335/O1CN01MAturQ1LjTqV7IfB1_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i3/2215623891335/O1CN01qUS9P51LjTnmfVTQc_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i1/2215623891335/O1CN01z0c54c1LjTnmfX12y_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN010RbfJ41LjTqWnp3SP_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i3/2215623891335/O1CN01dr0g301LjTqV7M5Et_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN01kMbHwI1LjTqWPU8gj_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i2/2215623891335/O1CN01DJa7Vv1LjTqWLArxR_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i3/2215623891335/O1CN013eTW7l1LjTqQoGVyj_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN01SV2ieq1LjTqWg4RcB_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i1/2215623891335/O1CN01svMwsM1LjTqWNjQEK_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN011cuDNv1LjTqXFWhUh_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i1/2215623891335/O1CN01Nxpen61LjTqWnnNRn_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i1/2215623891335/O1CN01gJhgQz1LjTqXFXAay_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i2/2215623891335/O1CN01bAAf631LjTnntZ0mE_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i3/2215623891335/O1CN01ka0RbL1LjTnlygA80_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN01WHIwm11LjTnm6oYFC_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i3/2215623891335/O1CN01C5004D1LjTnmfZ6F3_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN01YRy2s71LjTnl5Ba1o_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i3/2215623891335/O1CN011dADIL1LjTnlyknJW_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN01TRTFtp1LjTnmDDhnT_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i1/2215623891335/O1CN01zWvHNr1LjTnn4tqNd_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i1/2215623891335/O1CN01wxWobi1LjTnntcuEq_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i3/2215623891335/O1CN01kB87pi1LjTqVx3qdn_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN01muT75b1LjTqV7IGDr_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i2/2215623891335/O1CN01MeeF911LjTnl5BFIE_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN01pTXfCe1LjTowIjcMD_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i4/2215623891335/O1CN01i9YKhW1LjTp0fj4JP_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i2/2215623891335/O1CN01SBcJFo1LjTp2RmRHN_!!2215623891335.jpg\"><img style=\"display: block;width: 100.0%;\" src=\"//img.alicdn.com/imgextra/i3/2215623891335/O1CN01KQQYu41LjTp2vl6IC_!!2215623891335.jpg\"></div></div>", "_ddf": "ttt" }, "error": "", "reason": "", "error_code": "0000", "cache": 0, "api_info": "today: max:15000 all[=++];expires:2031-01-01", "execution_time": "6.941", "server_time": "Beijing/2025-12-30 09:54:58", "client_ip": "127.0.0.1", "call_args": [ ], "api_type": "taobao", "server_memory": "4.32MB", "last_id": false }
{ "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/2025-12-03 17:44:00", "call_args": [], "api_type": "taobao", "request_id": "15ee0ffc041242"}