万邦阿里巴巴中国站获取1688app上原数据 API 返回值说明

item_get_app-获取1688app上原数据 [查看演示] API测试工具 注册开通

1688.item_get_app(Ver:1.0.1-6.0)

  • 1688.item_get_app-1.0.0-1.0.html
  • 1688.item_get_app-1.0.0-6.0.html
  • 1688.item_get_app-1.0.1-6.0.html
  • 公共参数

    请求地址: https://api-gw.onebound.cn/1688/item_get_app

    名称 类型 必须 描述
    keyString调用key(必须以GET方式拼接在URL中)
    secretString调用密钥
    api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
    cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
    result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
    langString[cn,en,ru]翻译语言,默认cn简体中文
    versionStringAPI版本
    请求参数

    请求参数:num_iid=533816674053

    参数说明:num_iid:1688商品ID

    响应参数

    Version: Date:

    名称 类型 必须 示例值 描述
    item
    item[] 0 获取1688app上原数据
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    $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" =>"1688",
    	                "api_name" =>"item_get_app",
    	                "api_params"=>array (
      'num_iid' => '533816674053',
    )
                    )
                );
     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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    		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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    	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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053"
    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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053", 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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"533816674053"})// 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":"1688",
         "api_name" : "item_get_app",
         "api_params": {"num_iid":"533816674053"}//num_iid=533816674053,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")
    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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")!
    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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053"];
    
    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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
      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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053");
             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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053", (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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")
        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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")
    content(r)
    url = "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    response = webread(url);
    disp(response);
    
    响应示例
    {
        "item": {
            "video": "",
            "global_data": {
                "isSkuOffer": true,
                "hasBigPromotion": false,
                "tempModel": {
                    "offerUnit": "个",
                    "offerId": 768499302836,
                    "offerTitle": "新款2024沃凯wokai商务腕表石英运动表休闲皮带男士手表男表",
                    "defaultOfferImg": "",
                    "topCategoryId": 54,
                    "postCategoryId": 124264005,
                    "companyName": "佛山市南海区新米果百货商行(个体工商户)",
                    "sellerUserId": 2217451175065,
                    "sellerLoginId": "新米果百货",
                    "sellerMemberId": "b2b-2217451175065301cf",
                    "winportUrl": "https://winport.m.1688.com/page/index.html?memberId=b2b-2217451175065301cf",
                    "saledCount": 208966
                },
                "isSourcePromotion": false,
                "exposeInfo": {
                    "exposeArgs": {
                        "isYanxuanOffer": "false",
                        "sceneType": "default",
                        "ipvId": "213e366c17266221485261678e51fe",
                        "isPlusMember": "false",
                        "verticalType": "default",
                        "offerId": "768499302836",
                        "channelType": "dsc"
                    }
                },
                "channelType": "dsc",
                "offerMemberTags": [
                    4314177,
                    4264513,
                    4306497,
                    4209729,
                    210944,
                    406530,
                    415746,
                    475650,
                    4464705,
                    4496961,
                    360450,
                    387074,
                    338946,
                    4845121,
                    4890177,
                    5023297,
                    3791361,
                    3793921,
                    3775489,
                    3778561,
                    3780097,
                    3791873,
                    3881473,
                    3824641,
                    3825153,
                    3823105,
                    3824129,
                    3825665,
                    3833857,
                    3823617,
                    4055553,
                    3997697,
                    3953153,
                    4136449,
                    4155905,
                    4131841,
                    4134913,
                    4109313,
                    31296,
                    4216321,
                    4247553,
                    4341249,
                    232000,
                    406594,
                    394306,
                    481346,
                    477762,
                    348226,
                    353346,
                    335938,
                    360514,
                    573507,
                    5023233,
                    3788865,
                    3767873,
                    3768385,
                    3778625,
                    3824193,
                    3824705,
                    3823681,
                    3823169,
                    3825217,
                    3825729,
                    3803201,
                    3820097,
                    3833921,
                    4001345,
                    4056129,
                    4020801,
                    3977281,
                    4158017,
                    4134977,
                    4094529,
                    4307649,
                    4279489,
                    4197057,
                    223360,
                    4360897,
                    449154,
                    424578,
                    413826,
                    382082,
                    341122,
                    384130,
                    383618,
                    5179073,
                    3768961,
                    3784321,
                    3872385,
                    3873409,
                    3823745,
                    3825281,
                    3823233,
                    3825793,
                    3842177,
                    3833985,
                    3824257,
                    4047489,
                    4147329,
                    4135041,
                    4157057,
                    4100737,
                    4087937,
                    4314241,
                    235712,
                    209600,
                    399554,
                    448706,
                    446658,
                    393922,
                    393410,
                    453314,
                    475842,
                    475330,
                    382146,
                    373442,
                    4817025,
                    4907649,
                    3778753,
                    3768001,
                    3824321,
                    3822785,
                    3820225,
                    3819713,
                    3801793,
                    3823297,
                    3824833,
                    3825857,
                    3849921,
                    3832001,
                    3825345,
                    4055745,
                    4157121,
                    4122817,
                    4080321,
                    4077249,
                    4247361,
                    140032,
                    4425025,
                    4452673,
                    201984,
                    198400,
                    240896,
                    241408,
                    414978,
                    446722,
                    473346,
                    487682,
                    481538,
                    4501825,
                    4693825,
                    342786,
                    382210,
                    349442,
                    4752193,
                    5095745,
                    5139777,
                    5117249,
                    3878657,
                    3824897,
                    3825409,
                    3820289,
                    3822849,
                    3823361,
                    3823873,
                    3824385,
                    4043521,
                    3936001,
                    4115713,
                    21312,
                    4307713,
                    144704,
                    213824,
                    206656,
                    202048,
                    209216,
                    439106,
                    426306,
                    438594,
                    399682,
                    448834,
                    427330,
                    487746,
                    484674,
                    473922,
                    306498,
                    4687617,
                    343874,
                    4813569,
                    4734721,
                    5001473,
                    2911043,
                    3733825,
                    3881793,
                    3824449,
                    3822913,
                    3823425,
                    3825473,
                    3824961,
                    3819841,
                    3945793,
                    4169025,
                    4134721,
                    4087105,
                    4249025,
                    4247489,
                    4425153,
                    216960,
                    201088,
                    4342209,
                    440706,
                    411522,
                    441218,
                    425858,
                    458114,
                    4503489,
                    306562,
                    340866,
                    4798913,
                    4840897,
                    4817345,
                    3791233,
                    3770753,
                    3823489,
                    3825537,
                    3822977,
                    3833729,
                    3824001,
                    3825025,
                    3819393,
                    3820417,
                    4058497,
                    3953025,
                    4189569,
                    4134785,
                    4112257,
                    4248961,
                    153024,
                    170944,
                    210880,
                    414146,
                    398786,
                    394178,
                    455106,
                    454082,
                    448962,
                    486338,
                    310722,
                    270786,
                    305602,
                    339394,
                    333250,
                    393154,
                    368578,
                    368066,
                    388034,
                    5091201,
                    5117313,
                    5158785,
                    5131649,
                    5170049,
                    5128065,
                    3800001,
                    3792321,
                    3775425,
                    3778497,
                    3768769,
                    3825089,
                    3825601,
                    3824577,
                    3819969,
                    3820993,
                    3833793,
                    3823041,
                    3811777,
                    3966913,
                    3982273
                ],
                "needSkuHide": false,
                "hasConsignReation": false,
                "isPicPrivate": false,
                "supportPuhuo": true,
                "isPricePrivate": false,
                "orderParamModel": {
                    "orderParam": {
                        "saledCount": 208966,
                        "mixParam": {
                            "mixNum": 1,
                            "mixAmount": 3,
                            "shopMixNum": 2147483647,
                            "mixBegin": 0,
                            "supportMix": true
                        },
                        "beginNum": 1,
                        "canBookedAmount": 530697,
                        "skuParam": {
                            "skuPriceType": "rangePrice",
                            "skuRangePrices": [
                                {
                                    "price": "4.00",
                                    "beginAmount": "1"
                                }
                            ]
                        },
                        "flow": "general",
                        "addCartParam": {
                            "cartType": ""
                        }
                    }
                },
                "qrCode": "https://m.1688.com/offer/768499302836.html?sk=order",
                "detailModel": [
    
                ],
                "hasPurcharseMark": false,
                "showOldOD": false,
                "offerSign": {
                    "isSkuOffer": true,
                    "isPreSell": false,
                    "isConsignMarketOffer": true,
                    "isOnlyNPorcessingOffer": false,
                    "isOfferSupportOnlineTrade": true,
                    "isDistribution": true,
                    "hasBusinessPrice": false,
                    "hasJoinBusinessPrice": false,
                    "isPreSaleOffer": false,
                    "isVirtualCategory": false,
                    "preHeatOfferCanTrade": true,
                    "hasRelationOffer": true,
                    "isChtSingleOffer": true,
                    "isDetailForbidden": false
                },
                "abTestInfo": {
                    "exposeClickInfo": [
    
                    ],
                    "pvTrackInfo": {
                        "AbTIds": "30739",
                        "AbIds": "2515414#2517407#2494220#2518968"
                    },
                    "abTestValueInfo": {
                        "page_yanxuan_od_auth": "1",
                        "page_zgc_dimension": "0",
                        "page_yanxuan_qualityCert": "Y",
                        "page_dsc_xhdz_upgrade": "1",
                        "page_add_custom_service": "1"
                    }
                },
                "componentType": "page",
                "marketScene": "default",
                "images": [
                    {
                        "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01AkyOEm1nHozxV53XR_!!2217451175065-0-cib.220x220.jpg",
                        "imageURI": "img/ibank/O1CN01AkyOEm1nHozxV53XR_!!2217451175065-0-cib.jpg",
                        "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01AkyOEm1nHozxV53XR_!!2217451175065-0-cib.search.jpg",
                        "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01AkyOEm1nHozxV53XR_!!2217451175065-0-cib.summ.jpg",
                        "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01AkyOEm1nHozxV53XR_!!2217451175065-0-cib.310x310.jpg",
                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01AkyOEm1nHozxV53XR_!!2217451175065-0-cib.jpg"
                    },
                    {
                        "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01IcJvKd1nHp03r6tca_!!2217451175065-0-cib.220x220.jpg",
                        "imageURI": "img/ibank/O1CN01IcJvKd1nHp03r6tca_!!2217451175065-0-cib.jpg",
                        "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01IcJvKd1nHp03r6tca_!!2217451175065-0-cib.search.jpg",
                        "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01IcJvKd1nHp03r6tca_!!2217451175065-0-cib.summ.jpg",
                        "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01IcJvKd1nHp03r6tca_!!2217451175065-0-cib.310x310.jpg",
                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01IcJvKd1nHp03r6tca_!!2217451175065-0-cib.jpg"
                    },
                    {
                        "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01aQJ7LI1nHp004aF0u_!!2217451175065-0-cib.220x220.jpg",
                        "imageURI": "img/ibank/O1CN01aQJ7LI1nHp004aF0u_!!2217451175065-0-cib.jpg",
                        "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01aQJ7LI1nHp004aF0u_!!2217451175065-0-cib.search.jpg",
                        "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01aQJ7LI1nHp004aF0u_!!2217451175065-0-cib.summ.jpg",
                        "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01aQJ7LI1nHp004aF0u_!!2217451175065-0-cib.310x310.jpg",
                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01aQJ7LI1nHp004aF0u_!!2217451175065-0-cib.jpg"
                    },
                    {
                        "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01aVyovY1nHp04U5jrC_!!2217451175065-0-cib.220x220.jpg",
                        "imageURI": "img/ibank/O1CN01aVyovY1nHp04U5jrC_!!2217451175065-0-cib.jpg",
                        "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01aVyovY1nHp04U5jrC_!!2217451175065-0-cib.search.jpg",
                        "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01aVyovY1nHp04U5jrC_!!2217451175065-0-cib.summ.jpg",
                        "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01aVyovY1nHp04U5jrC_!!2217451175065-0-cib.310x310.jpg",
                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01aVyovY1nHp04U5jrC_!!2217451175065-0-cib.jpg"
                    },
                    {
                        "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN019jzGEg1nHozx1cf4n_!!2217451175065-0-cib.220x220.jpg",
                        "imageURI": "img/ibank/O1CN019jzGEg1nHozx1cf4n_!!2217451175065-0-cib.jpg",
                        "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN019jzGEg1nHozx1cf4n_!!2217451175065-0-cib.search.jpg",
                        "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN019jzGEg1nHozx1cf4n_!!2217451175065-0-cib.summ.jpg",
                        "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN019jzGEg1nHozx1cf4n_!!2217451175065-0-cib.310x310.jpg",
                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN019jzGEg1nHozx1cf4n_!!2217451175065-0-cib.jpg"
                    }
                ],
                "isActHottimingOffer": false,
                "filterModel": [
    
                ],
                "offerModelSign": {
                    "isBuyerProtection": true,
                    "isWeChatSupply": true,
                    "isConsignMarketOffer": true,
                    "isCrossBorderOffer": true,
                    "isSupportMix": true,
                    "isOnePsale": true,
                    "isOnDemandOffer": true,
                    "isWholesaleOffer": true,
                    "isSupplyStockOffer": true,
                    "hasFreightTemplate": true,
                    "isRangePriceSku": true,
                    "isGovCouponOfferInOD": false,
                    "hasSearchPicture": true,
                    "isTtptOffer": true,
                    "isMsjhOffer": true,
                    "hasWhitePicInOffer": true,
                    "hasOrder": true,
                    "isTbDistributionOffer": true,
                    "isToKuaiShou": true,
                    "isAegisTrade": true,
                    "isToTikTok": true,
                    "isBestOffer": true,
                    "isSearchOffer": true,
                    "isCBDistribution": true,
                    "isGspOffer": true,
                    "isOpenOffer": true,
                    "isEssxsfh": true,
                    "isVideoDemandOffer": true,
                    "isZeroWholesaleOffer": true,
                    "isAlipaySupported": true,
                    "isGpfOffer": true,
                    "isYjbyOffer": true,
                    "isSupportStock": true,
                    "isChtOffer": true,
                    "hasSendGoodsAddress": true
                },
                "topBarModel": [
    
                ],
                "activityModel": {
                    "activityStartTimestamps": 0,
                    "activityEndTimestamps": 0
                },
                "shareModel": [
    
                ],
                "mixModel": {
                    "isSupportMix": true,
                    "mixOneForSale": true,
                    "mixNumber": 1,
                    "mixAmount": 3
                },
                "operateDisplayStatus": "ORDER_NOW",
                "reserveData": [
    
                ],
                "tmPickScene": false,
                "skuModel": {
                    "skuProps": [
                        {
                            "fid": 3216,
                            "prop": "颜色",
                            "value": [
                                {
                                    "imageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN019jzGEg1nHozx1cf4n_!!2217451175065-0-cib.jpg",
                                    "name": "图片色"
                                }
                            ]
                        }
                    ],
                    "skuInfoMap": {
                        "图片色": {
                            "specId": "02026e83636d0654d1a93e552138157f",
                            "specAttrs": "图片色",
                            "saleCount": 0,
                            "canBookCount": 530697,
                            "skuId": 5274555673374,
                            "isPromotionSku": false
                        }
                    },
                    "skuPriceScale": "4.00",
                    "skuInfoMapOriginal": {
                        "图片色": {
                            "specId": "02026e83636d0654d1a93e552138157f",
                            "specAttrs": "图片色",
                            "saleCount": 0,
                            "canBookCount": 530697,
                            "skuId": 5274555673374,
                            "isPromotionSku": false
                        }
                    },
                    "skuPriceScaleOriginal": "null"
                },
                "offerBaseInfo": {
                    "sellerUserId": 2217451175065,
                    "sellerLoginId": "新米果百货",
                    "sellerMemberId": "b2b-2217451175065301cf",
                    "offerId": 768499302836,
                    "buyerUserId": 0,
                    "buyerLoginId": 0,
                    "sellerWinportUrl": "https://shop304460pj32993.1688.com",
                    "catId": 124264005,
                    "tradeTemplateId": "[0]",
                    "wholeNetworkEvaluation": false,
                    "shieldPcOfferDetail": false
                },
                "sellerSign": {
                    "isIndustrySeller": false,
                    "isSlsj": false,
                    "signs": {
                        "isIndustrySeller": false,
                        "isSlsj": false,
                        "isChtMember": false,
                        "isTp": true,
                        "isEaseBuyDealer": false,
                        "isFactoryDealer": false
                    },
                    "isTp": true,
                    "isChtMember": false
                },
                "canIgnoreConsignRelation": false,
                "businessType": "default"
            },
            "propsList": [
                {
                    "fid": 2176,
                    "name": "品牌",
                    "value": "SHSHD/帅仕达",
                    "values": [
                        "SHSHD/帅仕达"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 7869,
                    "name": "是否进口",
                    "value": "否",
                    "values": [
                        "否"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 3151,
                    "name": "型号",
                    "value": "68",
                    "values": [
                        "68"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 1498,
                    "name": "加印LOGO",
                    "value": "可以",
                    "values": [
                        "可以"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 100000729,
                    "name": "加工定制",
                    "value": "是",
                    "values": [
                        "是"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 7308,
                    "name": "特殊功能",
                    "value": "装饰",
                    "values": [
                        "装饰"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 3078,
                    "name": "显示类型",
                    "value": "指针+数字",
                    "values": [
                        "指针+数字"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 7101,
                    "name": "适用人群",
                    "value": "男",
                    "values": [
                        "男"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 973,
                    "name": "风格",
                    "value": "商务",
                    "values": [
                        "商务"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 143220385,
                    "name": "是否专利货源",
                    "value": "否",
                    "values": [
                        "否"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 918,
                    "name": "防水",
                    "value": "不可以",
                    "values": [
                        "不可以"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 148194748,
                    "name": "机芯种类",
                    "value": "石英",
                    "values": [
                        "石英"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 15757516,
                    "name": "机芯品牌",
                    "value": "其他",
                    "values": [
                        "其他"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 100078248,
                    "name": "机芯产地",
                    "value": "中国",
                    "values": [
                        "中国"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 1329,
                    "name": "厚度",
                    "value": "8mm",
                    "values": [
                        "8mm"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 100020818,
                    "name": "表盘直径",
                    "value": "42mm",
                    "values": [
                        "42mm"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 122216683,
                    "name": "表底类型",
                    "value": "普通",
                    "values": [
                        "普通"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 6490,
                    "name": "镜面材质",
                    "value": "普通玻璃镜面",
                    "values": [
                        "普通玻璃镜面"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 122216684,
                    "name": "表扣款式",
                    "value": "针扣",
                    "values": [
                        "针扣"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 102537358,
                    "name": "表扣材质",
                    "value": "不锈钢",
                    "values": [
                        "不锈钢"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 220,
                    "name": "表带材质",
                    "value": "PU",
                    "values": [
                        "PU"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 34341,
                    "name": "表盘形状",
                    "value": "圆形",
                    "values": [
                        "圆形"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 224,
                    "name": "表壳材质",
                    "value": "塑料",
                    "values": [
                        "塑料"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 159028348,
                    "name": "产地(国内)",
                    "value": "广东省",
                    "values": [
                        "广东省"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 2020563,
                    "name": "包装规格",
                    "value": "opp袋包装",
                    "values": [
                        "opp袋包装"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 1398,
                    "name": "货号",
                    "value": "8077款1816",
                    "values": [
                        "8077款1816"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 9910,
                    "name": "售后服务",
                    "value": "店铺保修",
                    "values": [
                        "店铺保修"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 182318189,
                    "name": "主要下游平台",
                    "value": "wish,速卖通",
                    "values": [
                        "wish",
                        "速卖通"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 3216,
                    "name": "颜色",
                    "value": "图片色",
                    "values": [
                        "图片色"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 193290002,
                    "name": "主要销售地区",
                    "value": "东南亚",
                    "values": [
                        "东南亚"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 193290003,
                    "name": "有可授权的自有品牌",
                    "value": "是",
                    "values": [
                        "是"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 182282223,
                    "name": "是否跨境出口专供货源",
                    "value": "是",
                    "values": [
                        "是"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                },
                {
                    "fid": 20666,
                    "name": "上市年份/季节",
                    "value": "2023年春季",
                    "values": [
                        "2023年春季"
                    ],
                    "isSpecial": false,
                    "outputType": 0,
                    "lectotype": false
                }
            ],
            "detail_info": "<div id=\\"offer-template-0\\"></div><div> </div>\r\n<p align=\\"center\\"><span style=\\"font-size: 22.0pt;\\"><strong> <span style=\\"background-color: #ffffff;color: #993300;\\"> </span><span style=\\"background-color: #ffffff;color: #993300;\\">默认中通快递 </span><span style=\\"background-color: #ffffff;color: #993300;\\"> </span></strong></span></p>\r\n<p align=\\"center\\"><span style=\\"color: #800080;font-size: 16.0pt;\\"><strong>本店供应淘宝 . 速卖通 和各大实体店的顾客,支持混批</strong></span></p>\r\n<p align=\\"center\\"><span style=\\"color: #800080;font-size: 16.0pt;\\"><strong>购前须知:</strong></span></p>\r\n<p align=\\"center\\"><span style=\\"font-size: 16.0pt;\\"><strong>我们做的是批发,寻求长期合作客户。批发利润低,产品质量问题希望买家可以配合累积10只以上一同寄回换货或退款,回寄邮费我司承担。邮费买家先出,收到货一起补邮费,拒收到付快递。</strong></span></p>\r\n<p align=\\"center\\"><span style=\\"background-color: #ffcc99;\\"><strong><span style=\\"font-size: 16.0pt;color: #800000;\\">10个以下质量问题可以包换,不过买家自己承担来回运费,希望与长期客户合作,无法仍认同以上质量问题处理方法的客户,请勿下单。</span></strong></span></p>\r\n<p align=\\"center\\"><span style=\\"font-size: 16.0pt;\\"><strong>我们下午5点前出货,如果客户下单比较晚的,本店将在次天安排,周日为休息日,周日的单也将在次日安排,望各位客户理解</strong></span></p>\r\n<p align=\\"center\\"> </p>\r\n<p align=\\"center\\"> <img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01UWRWuS1nHp033psPH_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\" width=\\"790\\" height=\\"542.5684380032206\\"/><br/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN0114BBIN1nHp01aXtk7_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01wiGjSA1nHp035veC4_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN012e3tTd1nHp02grcDe_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01UVQ3rd1nHozrRpUcu_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01MaYy6y1nHozzIqwn0_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN012Zddfm1nHp01odzg7_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01AcMQlA1nHozzIroon_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01PhUdtW1nHozxV5ew8_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01LNJhUP1nHozzMHxM3_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01y6R17C1nHp02gonb6_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01tOMLQe1nHp004bNe8_!!2217451175065-0-cib.jpg\\" alt=\\"undefined\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><br class=\\"img-brk\\"/><br/></p>",
            "detail_imgs": [
                "https://cbu01.alicdn.com/img/ibank/O1CN01UWRWuS1nHp033psPH_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN0114BBIN1nHp01aXtk7_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN01wiGjSA1nHp035veC4_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN012e3tTd1nHp02grcDe_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN01UVQ3rd1nHozrRpUcu_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN01MaYy6y1nHozzIqwn0_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN012Zddfm1nHp01odzg7_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN01AcMQlA1nHozzIroon_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN01PhUdtW1nHozxV5ew8_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN01LNJhUP1nHozzMHxM3_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN01y6R17C1nHp02gonb6_!!2217451175065-0-cib.jpg",
                "https://cbu01.alicdn.com/img/ibank/O1CN01tOMLQe1nHp004bNe8_!!2217451175065-0-cib.jpg"
            ],
            "_ddf": "fb_ra",
            "app_ver": "1.0.1-6.0",
            "app_ver_check": "ok",
            "format_check": "ok"
        },
        "error": "",
        "secache": "f5ac43ea95fc94aeb9d07fd77e9c100f",
        "secache_time": 1726622149,
        "secache_date": "2024-09-18 09:15:49",
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today: max:15000 all[=++];expires:2031-01-01",
        "execution_time": "2.607",
        "server_time": "Beijing/2024-09-18 09:15:49",
        "client_ip": "127.0.0.1",
        "call_args": {
            "num_iid": "768499302836"
        },
        "api_type": "1688",
        "server_memory": "3.91MB",
        "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/2024-09-18 23:44:00",
      "call_args": [],
      "api_type": "taobao",
      "request_id": "15ee0ffc041242"}
    相关资料
    错误码解释
    状态代码(error_code) 状态信息 详细描述 是否收费
    0000success接口调用成功并返回相关数据
    2000Search success but no result接口访问成功,但是搜索没有结果
    4000Server internal error服务器内部错误
    4001Network error网络错误
    4002Target server error目标服务器错误
    4003Param error用户输入参数错误忽略
    4004Account not found用户帐号不存在忽略
    4005Invalid authentication credentials授权失败忽略
    4006API stopped您的当前API已停用忽略
    4007Account stopped您的账户已停用忽略
    4008API rate limit exceeded并发已达上限忽略
    4009API maintenanceAPI维护中忽略
    4010API not found with these valuesAPI不存在忽略
    4012Please add api first请先添加api忽略
    4013Number of calls exceeded调用次数超限忽略
    4014Missing url param参数缺失忽略
    4015Wrong pageToken参数pageToken有误忽略
    4016Insufficient balance余额不足忽略
    4017timeout error请求超时
    5000unknown error未知错误
    API 工具
    如何获得此API
    立即开通 有疑问联系客服QQ:QQ:31424016063142401606(微信同号)