请求地址: https://api-gw.fan-b.com/taobao/item_get_app_pro
请求参数:num_iid=520813250866
参数说明:num_iid:淘宝商品ID
Version: Date:2025-3-11
-- 请求示例 url 默认请求参数已经URL编码处理 curl -i "https://api-gw.fan-b.com/taobao/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"
<?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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"; $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_get_app_pro", "api_params"=>array ( 'num_iid' => '520813250866', ) ) ); 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"; 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"; 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866" 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866", 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({"num_iid":"520813250866"})// 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_get_app_pro", "api_params": {"num_iid":"520813250866"}//num_iid=520813250866,#具体参数请参考文档说明 }, 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866") 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")! 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"]; 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"; 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"); 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866", (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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866") 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")?; 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_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866") content(r)
url = "https://api-gw.fan-b.com/taobao/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"; response = webread(url); disp(response);
{ "item": { "seller": { "seller_id": "1991926764", "seller_title": "萤石官方旗舰店", "shop_id": "108801324", "shop_title": "萤石官方旗舰店", "shop_url": "//shop108801324.taobao.com", "shop_icon": "//img.alicdn.com/imgextra//fa/a1/TB1jrf.bV67gK0jSZPfwu1hhFXa.png", "user_type": "B", "evaluates": [ { "score": "4.5", "title": "宝贝质量" }, { "score": "4.7", "title": "服务保障" }, { "score": "4.9", "title": "物流速度" } ] }, "item": { "num_iid": "680078401583", "title": "萤石AI人脸识别智能猫眼视频y3000无需指纹家用防盗门电子密码锁", "sales": "1万+", "detail_url": "//item.taobao.com/item.htm?id=680078401583", "images": [ "https://picasso.alicdn.com/imgextra/O1CNA1gU5ZHx1zpy1sNNkWu_!!1991926764-0-psf.jpg", "https://gw.alicdn.com/imgextra/O1CN01dlBDxe1zpxvFHCMU3_!!1991926764.jpg", "https://gw.alicdn.com/imgextra/O1CN01Bpr20y1zpxlC4kPiZ_!!1991926764.jpg", "https://gw.alicdn.com/imgextra/O1CN01u0S5FZ1zpxl8DHhP7_!!1991926764.jpg", "https://gw.alicdn.com/imgextra/O1CN01LtDVqN1zpxlYG6VNs_!!1991926764.jpg" ], "videos": [ { "itemId": "680078401583", "spatialVideoDimension": "3:4", "url": "http://cloud.video.taobao.com/play/u/1991926764/p/2/e/6/t/1/403135576199.mp4?appKey=38829", "videoId": "403135576199", "videoThumbnailURL": "https://picasso.alicdn.com/imgextra/O1CNA1gU5ZHx1zpy1sNNkWu_!!1991926764-0-psf.jpg" } ], "desc_imgs": [ "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01qBjMHQ1zpy1PVQ4h3_!!1991926764.png", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01kJMnaC1zpy1lp4azl_!!1991926764.png", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01NS1tDu1zpxlVi3F9E_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN01gSwxIt1zpxzGa4PQG_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01Meby0a1zpy1nzk0Bc_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01ycgAMZ1zpxyRZGiSY_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01NkoSvN1zpy1VyEjkN_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN014hrRmK1zpxurSKDpw_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01Fd9pkm1zpxunO1gRj_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN01qy15SD1zpxloGOKfl_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i2/1991926764/O1CN01owRGP81zpxlzfIBJP_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01wV8qSX1zpxlqVM1jW_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN013fo39c1zpxlslaww0_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN01zBsplA1zpxlwoZN6f_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN018NJ7Px1zpxlhG3iXS_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN018oI4951zpxppfuTw2_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN01D6Ztqo1zpxlnUi8Jg_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01Ru69gC1zpxlvh5ktF_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i2/1991926764/O1CN01hpQhIe1zpxlqcgfE6_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN01dwLQRX1zpxwdhvLhK_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01Cryg9b1zpxoRHOgLT_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01e9yQ9L1zpxlhG5vod_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i2/1991926764/O1CN01oXh9v21zpxlnUhriz_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01mZPChI1zpxvM3gX4i_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01EL44Dx1zpxlxaSzqt_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01sHke121zpxlzfGuL2_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN01wZj1TZ1zpxlxaUbdS_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i2/1991926764/O1CN01rqhraG1zpxlypji2Q_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01srU1zt1zpxlxaSvhD_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN01q1HwTG1zpxlslcDwT_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN010rLEHQ1zpxlnUkPhP_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01EaKDeO1zpxlzfH2ea_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01AMWt651zpxlnUjH2d_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i2/1991926764/O1CN01lOOmAH1zpxloGPTN0_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01gf29eF1zpxq0F8IFH_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN01YKtFPI1zpxlvh3LGa_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i2/1991926764/O1CN01i8Swdg1zpxvh1NV2v_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i1/1991926764/O1CN01Gc4iZ31zpxlwoZAfV_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01s9RtRc1zpxw4Dk5ml_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01KCbiov1zpxr9yudOL_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01412DQH1zpxxNFldSn_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i3/1991926764/O1CN01CnGwgW1zpxy8HjCdr_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i2/1991926764/O1CN01vAYzWB1zpxyCHXkiI_!!1991926764.jpg", "https://img.alicdn.com/imgextra/i4/1991926764/O1CN01ONf91C1zpy1nzkTIR_!!1991926764.jpg" ] }, "skuBase": { "1627207": { "pid": "1627207", "name": "饰面颜色", "values": [ { "vid": "30598787885", "name": "Y3000F极致灰【3D人脸 不带视频】", "image": "http://img.alicdn.com/imgextra/i1/1991926764/O1CN01AUty1d1zpxufZY57f_!!1991926764.jpg" }, { "vid": "30598787886", "name": "Y3000FV极致灰【3D人脸+远程视频对讲】", "image": "http://img.alicdn.com/imgextra/i2/1991926764/O1CN01QWG9bn1zpxuiecyOZ_!!1991926764.jpg" }, { "vid": "30598787887", "name": "Y3000FV晶石紫【3D人脸+远程视频对讲】", "image": "http://img.alicdn.com/imgextra/i2/1991926764/O1CN01Ot95XQ1zpxug3kw5y_!!1991926764.jpg" }, { "vid": "30598841824", "name": "Y3000FVS静谧黑【3D人脸+远程视频对讲+可视大屏+儿童出门检测】", "image": "http://img.alicdn.com/imgextra/i3/1991926764/O1CN01aan3rC1zpxun4cooO_!!1991926764.jpg" } ] } }, "skuCore": { "sku2info": [ { "skuId": "5442252479410", "price": "2199.00", "promotion_price": "1699.00", "activity_price": "1199.00", "propPath": "1627207:30598787885", "propName": "1627207:30598787885:饰面颜色:Y3000F极致灰【3D人脸 不带视频】", "quantity": 200 }, { "skuId": "5442252479408", "price": "2999.00", "promotion_price": "1999.00", "activity_price": "1499.00", "propPath": "1627207:30598787886", "propName": "1627207:30598787886:饰面颜色:Y3000FV极致灰【3D人脸+远程视频对讲】", "quantity": 200 }, { "skuId": "5686996374626", "price": "2999.00", "promotion_price": "1999.00", "activity_price": "1499.00", "propPath": "1627207:30598787887", "propName": "1627207:30598787887:饰面颜色:Y3000FV晶石紫【3D人脸+远程视频对讲】", "quantity": 94 }, { "skuId": "5442252479411", "price": "3999.00", "promotion_price": "2199.00", "activity_price": "1699.00", "propPath": "1627207:30598841824", "propName": "1627207:30598841824:饰面颜色:Y3000FVS静谧黑【3D人脸+远程视频对讲+可视大屏+儿童出门检测】", "quantity": 200 } ] }, "price": { "price": { "hiddenPrice": "false", "priceColor": "#FF4F00", "priceColorNew": "#FFFFFF", "priceDesc": "起", "priceMoney": "169900", "priceText": "1699", "priceTitle": "百亿补贴", "priceTitleColor": "#FF4F00", "priceUnit": "¥" }, "extraPrice": { "hiddenPrice": "false", "priceBgColor": "#FF5000", "priceColor": "#FFFFFF", "priceColorNew": "#FFFFFF", "priceDesc": "起", "priceMoney": "119900", "priceText": "1199", "priceTitle": "折后", "priceTitleColor": "#FFFFFF", "priceUnit": "¥" } }, "props": [ { "name": "品牌", "value": "EZVIZ/萤石" }, { "name": "型号", "value": "Y3000FV人脸视频锁" }, { "name": "产地", "value": "中国大陆" }, { "name": "省份", "value": "浙江省" }, { "name": "地市", "value": "杭州市" }, { "name": "面板及执手材质", "value": "铝合金" }, { "name": "智能类型", "value": "其他智能" }, { "name": "电源类型", "value": "直流电" }, { "name": "数据存储类型", "value": "在线" }, { "name": "电子类型", "value": "密码锁 人脸锁" }, { "name": "屏幕数量", "value": "单屏" }, { "name": "饰面颜色", "value": "Y3000F极致灰【3D人脸 不带视频】 Y3000FV极致灰【3D人脸+远程视频对讲】 Y3000FV晶石紫【3D人脸+远程视频对讲】 Y3000FVS静谧黑【3D人脸+远程视频对讲+可视大屏+儿童出门检测】" } ], "extensionInfo": [ { "items": [ { "text": [ "购买得积分" ] } ], "title": "优惠", "type": "DAILY_COUPON" } ], "delivery": { "addressId": "11996539000", "agingDesc": "预计5小时内发货|承诺48小时内发货", "agingDescColor": "#00A67C", "areaId": "130435102", "deliverToCity": "邯郸市", "deliveryFromAddr": "浙江杭州", "deliveryToAddr": "邯郸市 曲周县 侯村镇", "deliveryToDistrict": "曲周县", "freight": "快递: 免运费" }, "_ddf": "tgj", "format_check": "ok" }, "error": "", "secache": "bf10332b7d13e6b92865e7762412af36", "secache_time": 1741672688, "secache_date": "2025-03-11 13:58:08", "reason": "", "error_code": "0000", "cache": 0, "api_info": "today:18 max:15000 all[6624=18+6605+1];expires:2025-03-13", "execution_time": "3.604", "server_time": "Beijing/2025-03-11 13:58:08", "client_ip": "106.6.35.224", "call_args": { "num_iid": "680078401583" }, "api_type": "taobao", "server_memory": "5.18MB", "last_id": "delay" }
{ "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": "15ee0ffc041242"}