请求地址: https://api-gw.fan-b.com/1688/item_search_new
请求参数:q=衣服&page=1&sort=
参数说明:q:搜索关键字page:翻页sort:排序(normal综合,va_rmdarkgmv30rt成交额,bid价格升序,_bid价格降序)
Version: Date:
-- 请求示例 url 默认请求参数已经URL编码处理 curl -i "https://api-gw.fan-b.com/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort="
<?php // 请求示例 url 默认请求参数已经URL编码处理 // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.fan-b.com/help/demo/sdk/demo-sign.php $method = "GET"; $url = "https://api-gw.fan-b.com/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort="; $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" =>"1688", "api_name" =>"item_search_new", "api_params"=>array ( 'q' => '衣服', 'page' => '1', 'sort' => '', ) ) ); 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort="; 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort="; 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort=" 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort=", 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({"q":"\u8863\u670d","page":"1","sort":""})// 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":"1688", "api_name" : "item_search_new", "api_params": {"q":"\u8863\u670d","page":"1","sort":""}//q=衣服&page=1&sort=,#具体参数请参考文档说明 }, 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort=") 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort=")! 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort="]; 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort="; 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort="); 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort=", (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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort=") 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/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort=")?; let mut content = String::new(); resp.read_to_string(&mut content)?; println!("{}", content); Ok(()) }
library(httr) r <- GET("https://api-gw.fan-b.com/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort=") content(r)
url = "https://api-gw.fan-b.com/1688/item_search_new/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=衣服&page=1&sort="; response = webread(url); disp(response);
{ "item": [ { "title": "男装2022夏季短袖情侣t恤男女同款时尚简约休闲圆领T恤上衣服批发", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01vH2Jpd1MNmKzbiavS_!!2213203691423-0-cib.jpg", "promotion_price": null, "price": null, "sales": "2000+", "num_iid": "669093370636", "seller_nick": "石狮市领川服装厂", "tag_percent": "12.3%", "area": "泉州市", "sid": "b2b-221326973628972c61", "detail_url": "https://detail.1688.com/offer/669093370636.html" }, { "title": "2022夏季新款印花短袖t恤女网红同款衣服女韩版百搭中长款上衣女", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01Ek7mv41S5oV5YcCvp_!!2744312196-0-cib.jpg", "promotion_price": null, "price": null, "sales": "1000+", "num_iid": "668773906932", "seller_nick": "普宁市洪阳戴紫妮服装厂", "tag_percent": "17.3%", "area": "普宁市", "sid": "b2b-285040931583cf0", "detail_url": "https://detail.1688.com/offer/668773906932.html" }, { "title": "抖音质量磨毛双面德绒短袖t恤女立体卡通夏2022新款上衣大码女装", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01ihTAw31Vqw6C0UByX_!!2213014272705-0-cib.jpg", "promotion_price": null, "price": null, "sales": "200+", "num_iid": "670585170610", "seller_nick": "广州克里贸易有限公司", "tag_percent": "9%", "area": "普宁市", "sid": "b2b-2213014272705d647f", "detail_url": "https://detail.1688.com/offer/670585170610.html" }, { "title": "韩路女装 2022春夏新款卡通印花短袖T恤女ins风纯棉宽松潮流体恤", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01vPvBu722OtAF9rxw2_!!3910967111-0-cib.jpg", "promotion_price": null, "price": null, "sales": "6万+", "num_iid": "668912014686", "seller_nick": "瑞安市萌越贸易有限公司", "tag_percent": "17%", "area": "瑞安市", "sid": "b2b-391096711196312", "detail_url": "https://detail.1688.com/offer/668912014686.html" }, { "title": "撞色条纹短袖针织衫女2022夏季新款休闲百搭别致上衣ins显瘦薄款", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01ztb9V421Yg1BzxUC7_!!2213249306997-0-cib.jpg", "promotion_price": null, "price": null, "sales": "1000+", "num_iid": "671716125800", "seller_nick": "广州小仙妮子服装厂", "tag_percent": "4.7%", "area": "广州市", "sid": "b2b-2213249306997da12a", "detail_url": "https://detail.1688.com/offer/671716125800.html" }, { "title": "夏新款潮流男女重磅250克落肩半袖t恤供应学生班服宽松嘻哈街舞服", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01lJUgSo1uVkAiNDhwz_!!2209929186043-0-cib.jpg", "promotion_price": null, "price": null, "sales": "2万+", "num_iid": "670169572856", "seller_nick": "广州旺者归莱服装有限公司", "tag_percent": "10.8%", "area": "广州市", "sid": "b2b-22099291860439e3d0", "detail_url": "https://detail.1688.com/offer/670169572856.html" }, { "title": "东南亚跨境全涤男士短袖T恤亚马逊夏季新款短袖上衣时尚潮印花T恤", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01BeqZdv25bf3xdIOEu_!!2213760247545-0-cib.jpg", "promotion_price": null, "price": null, "sales": "1万+", "num_iid": "671850915594", "seller_nick": "揭阳市衫少服饰有限公司", "tag_percent": "6.9%", "area": "揭阳市", "sid": "b2b-22137602475451e023", "detail_url": "https://detail.1688.com/offer/671850915594.html" }, { "title": "韩路女装 主推款纯棉短袖T恤女2022春夏新品宽松潮流趣味印花体恤", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01v1B5s322OtADFyEOW_!!3910967111-0-cib.jpg", "promotion_price": null, "price": null, "sales": "24万+", "num_iid": "668176444969", "seller_nick": "瑞安市萌越贸易有限公司", "tag_percent": "17%", "area": "瑞安市", "sid": "b2b-391096711196312", "detail_url": "https://detail.1688.com/offer/668176444969.html" }, { "title": "男装2022夏季短袖情侣t恤男女同款时尚简约休闲圆领T恤上衣服批发", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01vH2Jpd1MNmKzbiavS_!!2213203691423-0-cib.jpg", "promotion_price": null, "price": null, "sales": "3万+", "num_iid": "668987018070", "seller_nick": "石狮市艾迪斯顿服装厂", "tag_percent": "15.9%", "area": "泉州市", "sid": "b2b-22132036914233b9ff", "detail_url": "https://detail.1688.com/offer/668987018070.html" }, { "title": "当季新品 趋势热卖", "pic_url": null, "promotion_price": null, "price": null, "sales": null, "num_iid": null, "seller_nick": null, "tag_percent": null, "area": null, "sid": null, "detail_url": "https://detail.1688.com/offer/.html" }, { "title": "纯棉t恤男2022夏季新款短袖T恤男圆领半袖宽松潮流衣服打底衫男", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN018WnzOm1DmCvnSox0K_!!2212492580258-0-cib.jpg", "promotion_price": null, "price": null, "sales": "1000+", "num_iid": "671351089756", "seller_nick": "汕头市潮阳区铜盂诗美嘉服装厂", "tag_percent": "8.3%", "area": "汕头市", "sid": "b2b-2212492580258e6ac6", "detail_url": "https://detail.1688.com/offer/671351089756.html" }, { "title": "中袖t恤女2022年新款女装气质polo领莫代尔半袖体恤撞色收腰上衣", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN019VuwdN1vYK19Qcjgl_!!2242696184-0-cib.jpg", "promotion_price": null, "price": null, "sales": "3000+", "num_iid": "670971673377", "seller_nick": "广州声歌服饰有限公司", "tag_percent": "45.4%", "area": "广州市", "sid": "b2b-2242696184", "detail_url": "https://detail.1688.com/offer/670971673377.html" }, { "title": "潮迈克男士短袖T恤衣服潮牌潮流半袖男装2022新款夏季修身体恤衫", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01k1ZXYL2N3uxtkFbjD_!!2212460019908-0-cib.jpg", "promotion_price": null, "price": null, "sales": "200+", "num_iid": "671819478208", "seller_nick": "石狮市祥志日用品商行", "tag_percent": "9.7%", "area": "", "sid": "b2b-22124600199086d3a0", "detail_url": "https://detail.1688.com/offer/671819478208.html" }, { "title": "100%棉t恤短袖男修身潮流纯色280g丝光棉男士半袖圆领上衣中青年", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN018rR3nq1Yidm4jNvRE_!!2212372513093-0-cib.jpg", "promotion_price": null, "price": null, "sales": "7000+", "num_iid": "669931288096", "seller_nick": "桐乡市梧桐辉诺服饰商行", "tag_percent": "16.3%", "area": "桐乡市", "sid": "b2b-22123725130939dd36", "detail_url": "https://detail.1688.com/offer/669931288096.html" }, { "title": "2022新款弹力直筒打底上衣五分袖小衫网纱立领印花T恤女装夏季潮", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01nx3VpR23uJy6lgtVW_!!2260697315-0-cib.jpg", "promotion_price": null, "price": null, "sales": "400+", "num_iid": "671337941177", "seller_nick": "潮州市潮安区金石镇骏龙制衣厂", "tag_percent": "39.7%", "area": "潮州市", "sid": "b2b-2260697315", "detail_url": "https://detail.1688.com/offer/671337941177.html" }, { "title": "厂家直销翻领冰丝短袖t恤男式商务休闲条纹宽松薄款Polo衫男装潮", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01lur0VS1uqoOGKJYOf_!!2213204496089-0-cib.jpg", "promotion_price": null, "price": null, "sales": "700+", "num_iid": "669987872360", "seller_nick": "桐乡市濮院柏梁服装厂", "tag_percent": "19%", "area": "桐乡市", "sid": "b2b-221320449608977b92", "detail_url": "https://detail.1688.com/offer/669987872360.html" }, { "title": "现货供应休闲日系短袖T恤男绣潮流日式绣花贴布圆领T恤男外贸衫", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01o0ZM4b29ayw5yQoaR_!!2209917828085-0-cib.jpg", "promotion_price": null, "price": null, "sales": "300+", "num_iid": "670628937468", "seller_nick": "广州市云格服饰有限公司", "tag_percent": "35.1%", "area": "广州市", "sid": "b2b-2209917828085ceab7", "detail_url": "https://detail.1688.com/offer/670628937468.html" }, { "title": "TKPA高街头复古美式oldschool做旧水洗徽章i短袖T恤男女ins国潮牌", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01FMyJtv1fE8i6JzwT7_!!3344093974-0-cib.jpg", "promotion_price": null, "price": null, "sales": "600+", "num_iid": "670665770082", "seller_nick": "广州悦享商贸有限公司", "tag_percent": "32.7%", "area": "广州市", "sid": "b2b-334409397456d89", "detail_url": "https://detail.1688.com/offer/670665770082.html" }, { "title": "中年男士T恤宽松爸爸夏装短袖宽条纹夏季上衣服有口袋中", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01s8ypcK1jD07xKzQhW_!!2211188044513-0-cib.jpg", "promotion_price": null, "price": null, "sales": "500+", "num_iid": "671263051411", "seller_nick": "桐乡市濮院弘伙服装厂", "tag_percent": "18%", "area": "嘉兴市", "sid": "b2b-2211129648221b6b4d", "detail_url": "https://detail.1688.com/offer/671263051411.html" }, { "title": "2022夏季新款宽松T恤短款温柔风上衣条纹冰丝针织衫女短袖", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01XFne181n3A8yzQGA0_!!2213769605033-0-cib.jpg", "promotion_price": null, "price": null, "sales": "700+", "num_iid": "671604715165", "seller_nick": "广州觅婷阁服装商行", "tag_percent": null, "area": "广州市", "sid": "b2b-2213769605033305d4", "detail_url": "https://detail.1688.com/offer/671604715165.html" }, { "title": "2022夏季新款五分袖t恤小清新连帽抽绳百搭休闲青少年套头衫上衣", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01ODtwTy1oe5h8ZddYU_!!2212454665249-0-cib.jpg", "promotion_price": null, "price": null, "sales": "1000+", "num_iid": "670454273152", "seller_nick": "石狮市崛夜雪锋服装厂", "tag_percent": "16.3%", "area": "石狮市", "sid": "b2b-2212454665249d3f37", "detail_url": "https://detail.1688.com/offer/670454273152.html" } ], "data_from": "1688app", "error": "", "reason": "", "error_code": "0000", "cache": 0, "api_info": "today:19 max:11000", "execution_time": "2.566", "server_time": "Beijing/2022-04-15 15:33:41", "client_ip": "106.6.33.38", "call_args": [], "api_type": "1688", "translate_language": "zh-CN", "translate_engine": "google_new", "server_memory": "4.29MB", "request_id": "gw-1.62591fd317826", "last_id": "886371758"}
{ "error": "data error", "reason": "data error", "error_code": "5000", "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": "1688", "request_id": "15ee0ffc041242"}