请求地址: https://api-gw.onebound.cn/vvic/item_get
请求参数:num_iid=621a49842d8d110006f94e0a
参数说明:num_iid:商品ID ; delist_time不为空代表商品已下架;数据会获取异常。
Version: Date:
-- 请求示例 url 默认请求参数已经URL编码处理 curl -i "https://api-gw.onebound.cn/vvic/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=621a49842d8d110006f94e0a"
<?php // 请求示例 url 默认请求参数已经URL编码处理 // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php $method = "GET"; $url = "https://api-gw.onebound.cn/vvic/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=621a49842d8d110006f94e0a"; $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" =>"vvic", "api_name" =>"item_get", "api_params"=>array ( 'num_iid' => '621a49842d8d110006f94e0a', ) ) ); 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/vvic/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=621a49842d8d110006f94e0a"; 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/vvic/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=621a49842d8d110006f94e0a"; 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/vvic/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=621a49842d8d110006f94e0a" headers = { "Accept-Encoding": "gzip", "Connection": "close" } if __name__ == "__main__": r = requests.get(url, headers=headers) json_obj = r.json() print(json_obj)
{ "item": { "detail_url": "https://www.vvic.com/item/4459879", "taobao_url": "//img.alicdn.com/imgextra/i2/665379942/TB2TR5Xkl8lpuFjy0FnXXcZyXXa_!!665379942.jpg", "hid": "8810#", "crumbs": "", "title": "实拍2017春夏新款纯色气质通勤立领无袖修身显瘦钉钻连衣裙", "desc_short": "", "brand": "", "brandId": "", "cid": "20000106", "pic_url": "//img.alicdn.com/imgextra/i2/665379942/TB2TR5Xkl8lpuFjy0FnXXcZyXXa_!!665379942.jpg", "item_imgs": [ { "url": "//img.alicdn.com/imgextra/i2/665379942/TB2TR5Xkl8lpuFjy0FnXXcZyXXa_!!665379942.jpg" }, { "url": "//img.alicdn.com/imgextra/i4/665379942/TB2Ii8Ij3xlpuFjSszgXXcJdpXa_!!665379942.jpg" }, { "url": "//img.alicdn.com/imgextra/i4/665379942/TB2AmTRlHlmpuFjSZFlXXbdQXXa_!!665379942.jpg" }, { "url": "//img.alicdn.com/imgextra/i2/665379942/TB263pyj4XlpuFjSsphXXbJOXXa_!!665379942.jpg" }, { "url": "//img.alicdn.com/imgextra/i2/665379942/TB21xuajYFkpuFjy1XcXXclapXa_!!665379942.jpg" } ], "nick": "哈麦女装", "num": "156", "num_iid": "4459879", "sales": 0, "price": "39.00", "orginal_price": "", "type": "", "seller_cids": "", "input_pids": "", "input_str": "", "item_weight": "", "valid_thru": "", "modified_time": "2017-04-01 14:11:08", "delist_time": "此商品已于 2017-12-22 15:11:08 下架", "desc": "<p><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i4/665379942/TB2syVujYBkpuFjy1zkXXbSpFXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i1/665379942/TB2XhPMlOpnpuFjSZFIXXXh2VXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i3/665379942/TB2oWLOlJ0opuFjSZFxXXaDNVXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i4/665379942/TB2zBYPlItnpuFjSZFvXXbcTpXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i2/665379942/TB2aVn1lHBmpuFjSZFuXXaG_XXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i2/665379942/TB2lHcalNlmpuFjSZPfXXc9iXXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i3/665379942/TB29DfOlUhnpuFjSZFEXXX0PFXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i3/665379942/TB2YV_RlOlnpuFjSZFgXXbi7FXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i2/665379942/TB2g1elfJhvOuFjSZFBXXcZgFXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i3/665379942/TB2BJbBlNBmpuFjSZFsXXcXpFXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i2/665379942/TB2M7vKlUdnpuFjSZPhXXbChpXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i1/665379942/TB2TlbPlItnpuFjSZFvXXbcTpXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i3/665379942/TB2H.PhlHBnpuFjSZFGXXX51pXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i4/665379942/TB2eoLhlHBnpuFjSZFGXXX51pXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i3/665379942/TB2b4vElUhnpuFjSZFpXXcpuXXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i1/665379942/TB2d4DPlNxmpuFjSZFNXXXrRXXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i1/665379942/TB2cjBIj3xlpuFjSszgXXcJdpXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i3/665379942/TB2YszBlNBmpuFjSZFsXXcXpFXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i3/665379942/TB2JPFfj3JkpuFjSszcXXXfsFXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i4/665379942/TB2WTFCj80lpuFjSszdXXcdxFXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i2/665379942/TB2BLBMjYFlpuFjy0FgXXbRBVXa_!!665379942.jpg\" align=\"absmiddle\"><img style=\"max-width: 750.0px;\" src=\"https://img.alicdn.com/imgextra/i1/665379942/TB24JdPj1J8puFjy1XbXXagqVXa_!!665379942.jpg\" align=\"absmiddle\"> </p>", "delivery": "", "guarantee": "", "returns": "", "stuff_status": "", "location": "", "post_fee": "", "express_fee": "", "ems_fee": "", "shipping_to": "", "has_discount": "", "freight_payer": "", "has_invoice": "", "has_warranty": "", "has_showcase": "", "increment": "", "approve_status": "", "postage_id": "", "product_id": "", "auction_point": "", "item_img": "", "prop_imgs": { "prop_img": [ { "properties": "1627207:28341", "url": "//img.alicdn.com/imgextra/i3/665379942/TB2iRKXjW8lpuFjy0FpXXaGrpXa_!!665379942.jpg" }, { "properties": "1627207:4950473", "url": "//img.alicdn.com/imgextra/i3/665379942/TB2O.RHj80kpuFjy1zdXXXuUVXa_!!665379942.jpg" }, { "properties": "", "url": "" } ] }, "props_img": { "1627207:28341": "//img.alicdn.com/imgextra/i3/665379942/TB2iRKXjW8lpuFjy0FpXXaGrpXa_!!665379942.jpg", "1627207:4950473": "//img.alicdn.com/imgextra/i3/665379942/TB2O.RHj80kpuFjy1zdXXXuUVXa_!!665379942.jpg", "": "" }, "video": [], "outer_id": "", "is_virtual": "", "sample_id": "", "is_promotion": "", "props_name": "20509:28314:尺码:S;20509:28315:尺码:M;20509:28316:尺码:L;20509:28317:尺码:XL;20509:6145171:尺码:2XL;1627207:28341:颜色:黑色;1627207:4950473:颜色:桔红色", "property_alias": "20509:28314:S;20509:28315:M;20509:28316:L;20509:28317:XL;20509:6145171:2XL;1627207:28341:黑色;1627207:4950473:桔红色", "props_list": { "20509:28314": "尺码:S", "20509:28315": "尺码:M", "20509:28316": "尺码:L", "20509:28317": "尺码:XL", "20509:6145171": "尺码:2XL", "1627207:28341": "颜色:黑色", "1627207:4950473": "颜色:桔红色" }, "seller_id": "", "shop_id": "{{=data.default_shop_id}}\" vda=\"link|account\">{{=data.username}}</a> </div>\r\n\r\n <div class=\"index_islogin_links\">\r\n <span class=\"j_index_support hide\">\r\n <a href=\"/shop/stocking.html\" class=\"btn btn-default j-backup-message\" vda=\"link|account\">备货提醒<i class=\"tip-tab-sub\"></i></a>\r\n <a href=\"/shop/bill.html\" class=\"btn btn-default\" vda=\"link|account\">交易记录</a>\r\n </span>\r\n <span class=\"j_index_unsupport hide\">\r\n <a href=\"/shop/new/home.html\" class=\"btn btn-default btn-x-large\" vda=\"link|account\">档口中心</a>\r\n </span>\r\n </div>\r\n\r\n <div class=\"login_infos\">\r\n <a href=\"/shop/new/customer.html?fr=index\" class=\"item\" vda=\"link|account\">\r\n <span class=\"red\" id=\"shopFollow\">{{=data.shop_favShop_num}}</span>\r\n <span class=\"txt\">关注</span>\r\n </a>\r\n <a href=\"/shop/new/itemData.html?pos_resource_id=11", "props": [], "seller_info": { "nick": "哈麦女装", "years": "", "city": "", "bail": "", "level": "2746", "kucun": "156", "rate": "", "score": "", "delivery_score": "", "item_score": "", "shop_name": "哈麦女装", "user_num_id": "", "sid": "", "title": "哈麦女装", "zhuy": "https://www.vvic.com/shop/14352", "localtion": "广东省 广州", "telephone": "", "weixin": "he13798036948", "qq": "1757090978", "company_name": "", "position": "新金马 5楼 E073", "menu": [], "phone": "13798036948\r\n13719193141" }, "left_recommend": [], "right_shop": [ { "sid": "www.vvic.com34015", "url": "www.vvic.com/shop/34015", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "艾莱尔", "position": "女人街 C22-B" }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5fd9c455319676000107bc58", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5fd97bb0319676000107b17a", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6043a2684179860001952afa", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/604122ca4561290001132803", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6042653c45612900011447d8", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/60154d15f37e6900016882bd", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6041e2ac417986000193898c", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/603b928d45612900010ad9fd", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5f57806f821d3c0001afe929", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5ff31cb82cab6f0001594388", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5f7f4a251840730001d345f3", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/603c431de4d8bc000141d2ec", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5fe5e9b5c7f3ac000103dcfa", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5ffc4079c7f3ac00010cbb6d", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5f8e7123144b1c0001f204b0", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/603225c64561290001fd5f34", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5fec46392cab6f000156efbc", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6010f869c7f3ac000119f6e5", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/604510b9e4d8bc0001440f14", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/603e0a0741798600018ea141", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5ff1a6092cab6f000158948a", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6034806c4561290001002b74", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/603cebf741798600018cef49", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5f676f131628c80001ae33bd", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/603f14644561290001100a21", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5fdb56d99e469b0001d26e64", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6018dce3eedb1500019c5f1f", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6010f86a2cab6f00016a7115", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5ff2ec02c7f3ac000108ab89", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/603309044561290001fe34ad", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6047b10c4561290001194991", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/60335b24e4d8bc00013fe691", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5fd39c997ea9970001b9b205", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5f41c7d5f936040001936153", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/601d27418a159e0001921841", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6043a1db4179860001952a8f", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5ff121182cab6f00015858c9", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/603547b84561290001025746", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/603babade4d8bc000141bd30", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5f69f3f5f492b00001179da1", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6010f2a7c7f3ac000119f4ea", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5efc81cf95663d0001dee9eb", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6044949c4561290001160348", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5ffc432ec7f3ac00010cbc46", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5fba6a05ada7f9000123856e", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5fbb4aab2bd1270001f5b88b", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/604126074561290001132a90", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5fe9f8d02cab6f000155ebb0", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/60335b3ae4d8bc00013fe6ab", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/602a1e3cc5dc0100018eb1c4", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6031fb80c472530001c51375", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6040e048e4d8bc0001430402", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5e8d9b834b6e2b0001425ef3", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/6044c0817f57940001640e9f", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/603638bd4179860001833a05", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5fffe224c7f3ac00010f1af1", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5ff2278b297f7d0001875ea1", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/5ff22869297f7d0001875eac", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/600089e5c7f3ac00010f875a", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/604490b64561290001160125", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com", "pic_url": "{{=item.index_img_url}}", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.comjavascript:void(0);", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.comgoods.html", "url": "www.vvic.com/item/{{=el.item_id}}", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/item/{{=vid}}", "pic_url": "//src.vvic.com/statics/v2/css/img/blank.gif", "nick": "", "position": "\r\n " }, { "sid": "www.vvic.com", "url": "www.vvic.com/about.html", "pic_url": "//g.alicdn.com/sd/ncpc/nc.js?t=2021031108", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issue/daifa4.html", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issue/daifa6.html#e1", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issue/daifa6.html#e1", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issue/daifa7.html#f1", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issue/daifa7.html#f2", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/index.html", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issueshop/dangkou5.html#e6", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issueshop/dangkou5.html#e5", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issueshop/dangkou5.html#e4", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issueshop/dangkou5.html", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issueshop/dkbq.html", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issueshop/fendang.html", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issueshop/dkxx.html", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issueshop/dangkou1.html", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com/help/issueshop/tblj.html", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.comstocking.html", "url": "www.vvic.com/help/index_shop.html", "pic_url": "//src.vvic.com/statics/v2/css/img/mini.png", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com", "pic_url": "", "nick": "", "position": "" }, { "sid": "www.vvic.com", "url": "www.vvic.com", "pic_url": "//g.alicdn.com/sd/ncpc/nc.js?t=2021031108", "nick": "", "position": "" } ], "right_recommend": [], "tmall": "", "error": "", "warning": "", "url_log": "", "shopinfo": { "shop_name": "" }, "promo_type": "", "shop_item": [], "relate_items": [], "skus": { "sku": [ { "price": "39.00", "orginal_price": "78.00", "properties": "20509:28314;1627207:28341", "properties_name": "20509:28314:尺码:S;1627207:28341:颜色:黑色", "quantity": "156", "sku_id": "44766600" }, { "price": "39.00", "orginal_price": "78.00", "properties": "20509:28314;1627207:4950473", "properties_name": "20509:28314:尺码:S;1627207:4950473:颜色:桔红色", "quantity": "156", "sku_id": "50665750" }, { "price": "39.00", "orginal_price": "78.00", "properties": "20509:28315;1627207:28341", "properties_name": "20509:28315:尺码:M;1627207:28341:颜色:黑色", "quantity": "156", "sku_id": "44766602" }, { "price": "39.00", "orginal_price": "78.00", "properties": "20509:28315;1627207:4950473", "properties_name": "20509:28315:尺码:M;1627207:4950473:颜色:桔红色", "quantity": "156", "sku_id": "50665752" }, { "price": "39.00", "orginal_price": "78.00", "properties": "20509:28316;1627207:28341", "properties_name": "20509:28316:尺码:L;1627207:28341:颜色:黑色", "quantity": "156", "sku_id": "44766601" }, { "price": "39.00", "orginal_price": "78.00", "properties": "20509:28316;1627207:4950473", "properties_name": "20509:28316:尺码:L;1627207:4950473:颜色:桔红色", "quantity": "156", "sku_id": "50665751" }, { "price": "39.00", "orginal_price": "78.00", "properties": "20509:28317;1627207:28341", "properties_name": "20509:28317:尺码:XL;1627207:28341:颜色:黑色", "quantity": "156", "sku_id": "44766598" }, { "price": "39.00", "orginal_price": "78.00", "properties": "20509:28317;1627207:4950473", "properties_name": "20509:28317:尺码:XL;1627207:4950473:颜色:桔红色", "quantity": "156", "sku_id": "50665749" }, { "price": "39.00", "orginal_price": "78.00", "properties": "20509:6145171;1627207:28341", "properties_name": "20509:6145171:尺码:2XL;1627207:28341:颜色:黑色", "quantity": "156", "sku_id": "44895352" }, { "price": "39.00", "orginal_price": "78.00", "properties": "20509:6145171;1627207:4950473", "properties_name": "20509:6145171:尺码:2XL;1627207:4950473:颜色:桔红色", "quantity": "156", "sku_id": "50665748" } ] }, "desc_img": [ "https://img.alicdn.com/imgextra/i4/665379942/TB2syVujYBkpuFjy1zkXXbSpFXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i1/665379942/TB2XhPMlOpnpuFjSZFIXXXh2VXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i3/665379942/TB2oWLOlJ0opuFjSZFxXXaDNVXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i4/665379942/TB2zBYPlItnpuFjSZFvXXbcTpXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i2/665379942/TB2aVn1lHBmpuFjSZFuXXaG_XXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i2/665379942/TB2lHcalNlmpuFjSZPfXXc9iXXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i3/665379942/TB29DfOlUhnpuFjSZFEXXX0PFXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i3/665379942/TB2YV_RlOlnpuFjSZFgXXbi7FXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i2/665379942/TB2g1elfJhvOuFjSZFBXXcZgFXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i3/665379942/TB2BJbBlNBmpuFjSZFsXXcXpFXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i2/665379942/TB2M7vKlUdnpuFjSZPhXXbChpXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i1/665379942/TB2TlbPlItnpuFjSZFvXXbcTpXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i3/665379942/TB2H.PhlHBnpuFjSZFGXXX51pXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i4/665379942/TB2eoLhlHBnpuFjSZFGXXX51pXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i3/665379942/TB2b4vElUhnpuFjSZFpXXcpuXXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i1/665379942/TB2d4DPlNxmpuFjSZFNXXXrRXXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i1/665379942/TB2cjBIj3xlpuFjSszgXXcJdpXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i3/665379942/TB2YszBlNBmpuFjSZFsXXcXpFXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i3/665379942/TB2JPFfj3JkpuFjSszcXXXfsFXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i4/665379942/TB2WTFCj80lpuFjSszdXXcdxFXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i2/665379942/TB2BLBMjYFlpuFjy0FgXXbRBVXa_!!665379942.jpg", "https://img.alicdn.com/imgextra/i1/665379942/TB24JdPj1J8puFjy1XbXXagqVXa_!!665379942.jpg" ] }, "secache": "e399d97b3d320748d1ff0a3e9306db52", "secache_time": 1615423814, "secache_date": "2021-03-11 08:50:14", "translate_status": "", "translate_time": 0, "language": { "default_lang": "cn", "current_lang": "cn" }, "error": "", "reason": "", "error_code": "0000", "cache": 0, "api_info": "today:0 max:10000", "execution_time": 2.221, "server_time": "Beijing/2021-03-11 08:50:14", "client_ip": "106.6.35.144", "call_args": { "num_iid": "4459879", "area_id": "440111" }, "api_type": "vvic", "translate_language": "zh-CN", "translate_engine": "baidu", "server_memory": "3.12MB", "request_id": "gw-4.6049694488c0c" }
{ "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"}