• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

电商API接口,不同请求展示明细Curl,PHP,PHPsdk,JAVA,C#,Python语言代码

武飞扬头像
API技术大佬Anzexi58
帮助1

编程语言(programming language)可以简单的理解为一种计算机和人都能识别的语言。一种计算机语言让程序员能够准确地定义计算机所需要使用的数据,并精确地定义在不同情况下所应当采取的行动。

API测试工具

Curl

  1.  
    -- 请求示例 url 默认请求参数已经URL编码处理
  2.  
    curl -i "https://api-gw.onebound.cn/taobao/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866&is_promotion=1"

PHP

  1.  
    <?php
  2.  
     
  3.  
    // 请求示例 url 默认请求参数已经URL编码处理
  4.  
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
  5.  
    $method = "GET";
  6.  
    $url = "https://api-gw.onebound.cn/taobao/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866&is_promotion=1";
  7.  
    $curl = curl_init();
  8.  
    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  9.  
    curl_setopt($curl, CURLOPT_URL, $url);
  10.  
    curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
  11.  
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
  12.  
    curl_setopt($curl, CURLOPT_FAILONERROR, false);
  13.  
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  14.  
    curl_setopt($curl, CURLOPT_HEADER, true);
  15.  
    curl_setopt($curl, CURLOPT_ENCODING, "gzip");
  16.  
    var_dump(curl_exec($curl));
  17.  
    ?>
学新通

PHPSdk

  1.  
    <?php
  2.  
    //定义缓存目录和引入文件
  3.  
    define("DIR_RUNTIME","runtime/");
  4.  
    define("DIR_ERROR","runtime/");
  5.  
    define("SECACHE_SIZE","0");
  6.  
    //SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
  7.  
    include ("ObApiClient.php");
  8.  
     
  9.  
    $obapi = new otao\ObApiClient();
  10.  
    $obapi->api_url = "http://api-gw.onebound.cn/";
  11.  
    $obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
  12.  
    $obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
  13.  
    $obapi->api_key = "<您自己的apiKey>";
  14.  
    $obapi->api_secret = "<您自己的apiSecret>";
  15.  
    $obapi->api_version ="";
  16.  
    $obapi->secache_path ="runtime/";
  17.  
    $obapi->secache_time ="86400";
  18.  
    $obapi->cache = true;
  19.  
     
  20.  
    $api_data = $obapi->exec(
  21.  
    array(
  22.  
    "api_type" =>"taobao",
  23.  
    "api_name" =>"item_get",
  24.  
    "api_params"=>array (
  25.  
    'num_iid' => '520813250866',
  26.  
    'is_promotion' => '1',
  27.  
    )
  28.  
    )
  29.  
    );
  30.  
    var_dump($api_data);
  31.  
    ?>
学新通

JAVA

  1.  
    import java.io.BufferedReader;
  2.  
    import java.io.IOException;
  3.  
    import java.io.InputStream;
  4.  
    import java.io.InputStreamReader;
  5.  
    import java.io.Reader;
  6.  
    import java.net.URL;
  7.  
    import java.nio.charset.Charset;
  8.  
    import org.json.JSONException;
  9.  
    import org.json.JSONObject;
  10.  
    import java.io.PrintWriter;
  11.  
    import java.net.URLConnection;
  12.  
     
  13.  
    public class Example {
  14.  
    private static String readAll(Reader rd) throws IOException {
  15.  
    StringBuilder sb = new StringBuilder();
  16.  
    int cp;
  17.  
    while ((cp = rd.read()) != -1) {
  18.  
    sb.append((char) cp);
  19.  
    }
  20.  
    return sb.toString();
  21.  
    }
  22.  
    public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
  23.  
    URL realUrl = new URL(url);
  24.  
    URLConnection conn = realUrl.openConnection();
  25.  
    conn.setDoOutput(true);
  26.  
    conn.setDoInput(true);
  27.  
    PrintWriter out = new PrintWriter(conn.getOutputStream());
  28.  
    out.print(body);
  29.  
    out.flush();
  30.  
    InputStream instream = conn.getInputStream();
  31.  
    try {
  32.  
    BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
  33.  
    String jsonText = readAll(rd);
  34.  
    JSONObject json = new JSONObject(jsonText);
  35.  
    return json;
  36.  
    } finally {
  37.  
    instream.close();
  38.  
    }
  39.  
    }
  40.  
    public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
  41.  
    URL realUrl = new URL(url);
  42.  
    URLConnection conn = realUrl.openConnection();
  43.  
    InputStream instream = conn.getInputStream();
  44.  
    try {
  45.  
    BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
  46.  
    String jsonText = readAll(rd);
  47.  
    JSONObject json = new JSONObject(jsonText);
  48.  
    return json;
  49.  
    } finally {
  50.  
    instream.close();
  51.  
    }
  52.  
    }
  53.  
    public static void main(String[] args) throws IOException, JSONException {
  54.  
    // 请求示例 url 默认请求参数已经URL编码处理
  55.  
    String url = "https://api-gw.onebound.cn/taobao/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866&is_promotion=1";
  56.  
    JSONObject json = getRequestFromUrl(url);
  57.  
    System.out.println(json.toString());
  58.  
    }
  59.  
     
  60.  
    }
学新通

C#

  1.  
    //using System.Net.Security;
  2.  
    //using System.Security.Cryptography.X509Certificates;
  3.  
    private const String method = "GET";
  4.  
    static void Main(string[] args)
  5.  
    {
  6.  
    String bodys = "";
  7.  
    // 请求示例 url 默认请求参数已经做URL编码
  8.  
    String url = "https://api-gw.onebound.cn/taobao/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866&is_promotion=1";
  9.  
    HttpWebRequest httpRequest = null;
  10.  
    HttpWebResponse httpResponse = null;
  11.  
    if (url.Contains("https://"))
  12.  
    {
  13.  
    ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
  14.  
    httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
  15.  
    }
  16.  
    else
  17.  
    {
  18.  
    httpRequest = (HttpWebRequest)WebRequest.Create(url);
  19.  
    }
  20.  
    httpRequest.Method = method;
  21.  
    if (0 < bodys.Length)
  22.  
    {
  23.  
    byte[] data = Encoding.UTF8.GetBytes(bodys);
  24.  
    using (Stream stream = httpRequest.GetRequestStream())
  25.  
    {
  26.  
    stream.Write(data, 0, data.Length);
  27.  
    }
  28.  
    }
  29.  
    try
  30.  
    {
  31.  
    httpResponse = (HttpWebResponse)httpRequest.GetResponse();
  32.  
    }
  33.  
    catch (WebException ex)
  34.  
    {
  35.  
    httpResponse = (HttpWebResponse)ex.Response;
  36.  
    }
  37.  
    Console.WriteLine(httpResponse.StatusCode);
  38.  
    Console.WriteLine(httpResponse.Method);
  39.  
    Console.WriteLine(httpResponse.Headers);
  40.  
    Stream st = httpResponse.GetResponseStream();
  41.  
    StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
  42.  
    Console.WriteLine(reader.ReadToEnd());
  43.  
    Console.WriteLine("\n");
  44.  
    }
  45.  
    public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
  46.  
    {
  47.  
    return true;
  48.  
    }
学新通

Python

  1.  
    # coding:utf-8
  2.  
    """
  3.  
    Compatible for python2.x and python3.x
  4.  
    requirement: pip install requests
  5.  
    """
  6.  
    from __future__ import print_function
  7.  
    import requests
  8.  
    # 请求示例 url 默认请求参数已经做URL编码
  9.  
    url = "https://api-gw.onebound.cn/taobao/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866&is_promotion=1"
  10.  
    headers = {
  11.  
    "Accept-Encoding": "gzip",
  12.  
    "Connection": "close"
  13.  
    }
  14.  
    if __name__ == "__main__":
  15.  
    r = requests.get(url, headers=headers)
  16.  
    json_obj = r.json()
  17.  
    print(json_obj)
学新通

示例详情

  1.  
    Request address:
  2.  
    https://api-gw.onebound.cn/taobao/item_get/?key=t&
  3.  
    &num_iid=678372678359&is_promotion=1&&lang=zh-CN&secret=
  4.  
    ---------------------------------------
  5.  
    Result Object:
  6.  
    ---------------------------------------
  7.  
    {
  8.  
    "item": {
  9.  
    "num_iid": "678372678359",
  10.  
    "title": "买一送一!极小衫圆弧个性字体logo卫衣男美式复古高街潮牌长袖",
  11.  
    "desc_short": "",
  12.  
    "price": 69,
  13.  
    "total_price": "",
  14.  
    "suggestive_price": "",
  15.  
    "orginal_price": 129,
  16.  
    "nick": "梦建dlshow",
  17.  
    "num": 200,
  18.  
    "detail_url": "https://item.taobao.com/item.htm?id=678372678359",
  19.  
    "pic_url": "https://gw.alicdn.com/imgextra/O1CN010VRMF31CzeyeGECLt_!!375350152.jpg",
  20.  
    "brand": null,
  21.  
    "brandId": "",
  22.  
    "rootCatId": "",
  23.  
    "cid": 50010159,
  24.  
    "desc": "<div >\n <div >\n <img src=\"http://img.alicdn.com/imgextra/i3/375350152/O1CN01zyJOOB1CzeyrZKxNe_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i3/375350152/O1CN016W2sOm1Czeyn5Kn9u_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i1/375350152/O1CN01WIz5Cw1CzeymPbxv6_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i1/375350152/O1CN01E3y28F1CzeyqlkGVp_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i4/375350152/O1CN01ukeV3r1CzeygeCmst_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i2/375350152/O1CN012jV0Ls1CzeydVQqh9_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i2/375350152/O1CN01tQPo2J1Czeyirfi79_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i2/375350152/O1CN01hDjnXe1CzeypovPhL_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i2/375350152/O1CN019yfNPh1CzeypowLuk_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i3/375350152/O1CN01prWRW41CzeylqRjSX_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i4/375350152/O1CN01dMODOw1CzeyhKofMF_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i1/375350152/O1CN01xAguy11CzeynkcRxk_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i4/375350152/O1CN01LPk89g1CzeysfyL4S_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i1/375350152/O1CN01aUBs1A1Czeyn5NoGg_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i2/375350152/O1CN01Go40hH1CzeytTExZR_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i1/375350152/O1CN01E7kwGB1CzeyqlkKgo_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i3/375350152/O1CN01eAx1as1Czeyn5OHO4_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i1/375350152/O1CN01iBfqf91CzeymIUcMv_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i4/375350152/O1CN01xAjlAi1CzeyhKpwNS_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i3/375350152/O1CN01ohnl5Q1CzeyvXxUrD_!!375350152.jpg\" />\n <img src=\"http://img.alicdn.com/imgextra/i1/375350152/O1CN01WP99Uh1CzeymITkKK_!!375350152.jpg\" />\n </div>\n </div><img src=\"https://www.o0b.cn/i.php?t.png&rid=gw-3.632bb10ea8e5c&p=1778788030&k=i_key&t=1663807760\" style=\"display:none\" />",
  25.  
    "item_imgs": [
  26.  
    {
  27.  
    "url": "https://gw.alicdn.com/imgextra/O1CN010VRMF31CzeyeGECLt_!!375350152.jpg"
  28.  
    },
  29.  
    {
  30.  
    "url": "//img.alicdn.com/bao/uploaded/i2/375350152/O1CN01DnfCYN1CzeydOpG9Y_!!375350152.jpg"
  31.  
    },
  32.  
    {
  33.  
    "url": "//img.alicdn.com/bao/uploaded/i3/375350152/O1CN01B7eiKV1CzeydOnJbW_!!375350152.jpg"
  34.  
    },
  35.  
    {
  36.  
    "url": "//img.alicdn.com/bao/uploaded/i3/375350152/O1CN01KTWISd1CzeygXVQgV_!!375350152.jpg"
  37.  
    },
  38.  
    {
  39.  
    "url": "//img.alicdn.com/bao/uploaded/i4/375350152/O1CN01hZV8Fa1Czeyirdtrh_!!375350152.jpg"
  40.  
    }
  41.  
    ],
  42.  
    "item_weight": "",
  43.  
    "post_fee": 0,
  44.  
    "freight": "",
  45.  
    "express_fee": "",
  46.  
    "ems_fee": "",
  47.  
    "shipping_to": "",
  48.  
    "video": [],
  49.  
    "sample_id": "",
  50.  
    "props_name": "20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:28316:尺码:L;20509:28315:尺码:M;20509:28314:尺码:S;20509:28317:尺码:XL;20509:28316:尺码:L;20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:28315:尺码:M;20509:28317:尺码:XL;20509:28314:尺码:S;20509:28314:尺码:S;20509:28317:尺码:XL;20509:115781:尺码:3XL;20509:6145171:尺码:2XL;20509:28315:尺码:M;20509:28316:尺码:L;20509:28315:尺码:M;20509:28316:尺码:L;20509:28314:尺码:S;20509:28317:尺码:XL;20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:28316:尺码:L;20509:6145171:尺码:2XL;20509:28317:尺码:XL;20509:28314:尺码:S;20509:115781:尺码:3XL;20509:28315:尺码:M;20509:28314:尺码:S;20509:6145171:尺码:2XL;20509:28317:尺码:XL;20509:115781:尺码:3XL;20509:28315:尺码:M;20509:28316:尺码:L;20509:28316:尺码:L;20509:28317:尺码:XL;20509:28315:尺码:M;20509:28314:尺码:S;20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:28315:尺码:M;20509:28317:尺码:XL;20509:28314:尺码:S;20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:28316:尺码:L;20509:28315:尺码:M;20509:28317:尺码:XL;20509:115781:尺码:3XL;20509:28314:尺码:S;20509:28316:尺码:L;20509:6145171:尺码:2XL;20509:28317:尺码:XL;20509:28314:尺码:S;20509:28315:尺码:M;20509:28316:尺码:L;20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:28317:尺码:XL;20509:28314:尺码:S;20509:28316:尺码:L;20509:28315:尺码:M;20509:28317:尺码:XL;20509:28316:尺码:L;20509:28314:尺码:S;20509:28315:尺码:M;20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:28315:尺码:M;20509:6145171:尺码:2XL;20509:28316:尺码:L;20509:28314:尺码:S;20509:28317:尺码:XL;20509:115781:尺码:3XL;20509:28317:尺码:XL;20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:28315:尺码:M;20509:28314:尺码:S;20509:28316:尺码:L;20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:28316:尺码:L;20509:28317:尺码:XL;20509:28315:尺码:M;20509:28314:尺码:S;20509:28314:尺码:S;20509:28315:尺码:M;20509:28316:尺码:L;20509:115781:尺码:3XL;20509:6145171:尺码:2XL;20509:28317:尺码:XL;20509:28317:尺码:XL;20509:28316:尺码:L;20509:28315:尺码:M;20509:6145171:尺码:2XL;20509:115781:尺码:3XL;20509:28314:尺码:S;1627207:699580971:颜色:白色【加绒款】;1627207:699580971:颜色:白色【加绒款】;1627207:699580971:颜色:白色【加绒款】;1627207:699580971:颜色:白色【加绒款】;1627207:699580971:颜色:白色【加绒款】;1627207:699580971:颜色:白色【加绒款】;1627207:380978865:颜色:黑色【加绒款】;1627207:380978865:颜色:黑色【加绒款】;1627207:380978865:颜色:黑色【加绒款】;1627207:380978865:颜色:黑色【加绒款】;1627207:380978865:颜色:黑色【加绒款】;1627207:380978865:颜色:黑色【加绒款】;1627207:382116126:颜色:酒红色【加绒款】;1627207:382116126:颜色:酒红色【加绒款】;1627207:382116126:颜色:酒红色【加绒款】;1627207:382116126:颜色:酒红色【加绒款】;1627207:382116126:颜色:酒红色【加绒款】;1627207:382116126:颜色:酒红色【加绒款】;1627207:395460484:颜色:浅灰色【加绒款】;1627207:395460484:颜色:浅灰色【加绒款】;1627207:395460484:颜色:浅灰色【加绒款】;1627207:395460484:颜色:浅灰色【加绒款】;1627207:395460484:颜色:浅灰色【加绒款】;1627207:395460484:颜色:浅灰色【加绒款】;1627207:28320:颜色:白色;1627207:28320:颜色:白色;1627207:28320:颜色:白色;1627207:28320:颜色:白色;1627207:28320:颜色:白色;1627207:28320:颜色:白色;1627207:28341:颜色:黑色;1627207:28341:颜色:黑色;1627207:28341:颜色:黑色;1627207:28341:颜色:黑色;1627207:28341:颜色:黑色;1627207:28341:颜色:黑色;1627207:645576665:颜色:暗夜灰;1627207:645576665:颜色:暗夜灰;1627207:645576665:颜色:暗夜灰;1627207:645576665:颜色:暗夜灰;1627207:645576665:颜色:暗夜灰;1627207:645576665:颜色:暗夜灰;1627207:4966037:颜色:牛仔蓝;1627207:4966037:颜色:牛仔蓝;1627207:4966037:颜色:牛仔蓝;1627207:4966037:颜色:牛仔蓝;1627207:4966037:颜色:牛仔蓝;1627207:4966037:颜色:牛仔蓝;1627207:6872191:颜色:豆绿色;1627207:6872191:颜色:豆绿色;1627207:6872191:颜色:豆绿色;1627207:6872191:颜色:豆绿色;1627207:6872191:颜色:豆绿色;1627207:6872191:颜色:豆绿色;1627207:415218951:颜色:黑色【新款】;1627207:415218951:颜色:黑色【新款】;1627207:415218951:颜色:黑色【新款】;1627207:415218951:颜色:黑色【新款】;1627207:415218951:颜色:黑色【新款】;1627207:415218951:颜色:黑色【新款】;1627207:813822022:颜色:藏青色【新款】;1627207:813822022:颜色:藏青色【新款】;1627207:813822022:颜色:藏青色【新款】;1627207:813822022:颜色:藏青色【新款】;1627207:813822022:颜色:藏青色【新款】;1627207:813822022:颜色:藏青色【新款】;1627207:474390881:颜色:白色【新款】;1627207:474390881:颜色:白色【新款】;1627207:474390881:颜色:白色【新款】;1627207:474390881:颜色:白色【新款】;1627207:474390881:颜色:白色【新款】;1627207:474390881:颜色:白色【新款】;1627207:799732754:颜色:卡其色【新款】;1627207:799732754:颜色:卡其色【新款】;1627207:799732754:颜色:卡其色【新款】;1627207:799732754:颜色:卡其色【新款】;1627207:799732754:颜色:卡其色【新款】;1627207:799732754:颜色:卡其色【新款】;1627207:787450089:颜色:浅灰色【新款】;1627207:787450089:颜色:浅灰色【新款】;1627207:787450089:颜色:浅灰色【新款】;1627207:787450089:颜色:浅灰色【新款】;1627207:787450089:颜色:浅灰色【新款】;1627207:787450089:颜色:浅灰色【新款】;1627207:902410152:颜色:浅粉色【新款】;1627207:902410152:颜色:浅粉色【新款】;1627207:902410152:颜色:浅粉色【新款】;1627207:902410152:颜色:浅粉色【新款】;1627207:902410152:颜色:浅粉色【新款】;1627207:902410152:颜色:浅粉色【新款】;1627207:2660282734:颜色:摩卡色【新款】;1627207:2660282734:颜色:摩卡色【新款】;1627207:2660282734:颜色:摩卡色【新款】;1627207:2660282734:颜色:摩卡色【新款】;1627207:2660282734:颜色:摩卡色【新款】;1627207:2660282734:颜色:摩卡色【新款】;1627207:22137857604:颜色:暗夜灰【新款】;1627207:22137857604:颜色:暗夜灰【新款】;1627207:22137857604:颜色:暗夜灰【新款】;1627207:22137857604:颜色:暗夜灰【新款】;1627207:22137857604:颜色:暗夜灰【新款】;1627207:22137857604:颜色:暗夜灰【新款】",
  51.  
    "prop_imgs": {
  52.  
    "prop_img": [
  53.  
    {
  54.  
    "properties": "1627207:699580971",
  55.  
    "url": "//gd3.alicdn.com/imgextra/i2/375350152/O1CN01H4XinJ1Czey6MToNn_!!375350152.jpg"
  56.  
    },
  57.  
    {
  58.  
    "properties": "1627207:380978865",
  59.  
    "url": "//gd1.alicdn.com/imgextra/i2/375350152/O1CN01sM0z7W1Czey2YDkIa_!!375350152.jpg"
  60.  
    },
  61.  
    {
  62.  
    "properties": "1627207:382116126",
  63.  
    "url": "//gd1.alicdn.com/imgextra/i3/375350152/O1CN01w6EJJe1CzexzPAghY_!!375350152.jpg"
  64.  
    },
  65.  
    {
  66.  
    "properties": "1627207:395460484",
  67.  
    "url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01su0TZ51Czexx7bSnV_!!375350152.jpg"
  68.  
    },
  69.  
    {
  70.  
    "properties": "1627207:28320",
  71.  
    "url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01HqbMvX1Czey1petf7_!!375350152.jpg"
  72.  
    },
  73.  
    {
  74.  
    "properties": "1627207:28341",
  75.  
    "url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01PUBUiw1CzexyfeLx6_!!375350152.jpg"
  76.  
    },
  77.  
    {
  78.  
    "properties": "1627207:645576665",
  79.  
    "url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01OiITom1Czey8QKuYD_!!375350152.jpg"
  80.  
    },
  81.  
    {
  82.  
    "properties": "1627207:4966037",
  83.  
    "url": "//gd3.alicdn.com/imgextra/i4/375350152/O1CN01PZW6sZ1Czey1jHfau_!!375350152.jpg"
  84.  
    },
  85.  
    {
  86.  
    "properties": "1627207:6872191",
  87.  
    "url": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01xCRZUL1Czey1jFzdU_!!375350152.jpg"
  88.  
    },
  89.  
    {
  90.  
    "properties": "1627207:415218951",
  91.  
    "url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01DbJj421CzeyhKnnIG_!!375350152.jpg"
  92.  
    },
  93.  
    {
  94.  
    "properties": "1627207:813822022",
  95.  
    "url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN010VRMF31CzeyeGECLt_!!375350152.jpg"
  96.  
    },
  97.  
    {
  98.  
    "properties": "1627207:474390881",
  99.  
    "url": "//gd4.alicdn.com/imgextra/i3/375350152/O1CN01KYREIF1Czeyk6tTEN_!!375350152.jpg"
  100.  
    },
  101.  
    {
  102.  
    "properties": "1627207:799732754",
  103.  
    "url": "//gd2.alicdn.com/imgextra/i3/375350152/O1CN01p47Nai1CzeyXCIYsz_!!375350152.jpg"
  104.  
    },
  105.  
    {
  106.  
    "properties": "1627207:787450089",
  107.  
    "url": "//gd3.alicdn.com/imgextra/i1/375350152/O1CN01SSYebN1Czeyp0tfOD_!!375350152.jpg"
  108.  
    },
  109.  
    {
  110.  
    "properties": "1627207:902410152",
  111.  
    "url": "//gd2.alicdn.com/imgextra/i1/375350152/O1CN01JAdaTY1Czeyl1MWy1_!!375350152.jpg"
  112.  
    },
  113.  
    {
  114.  
    "properties": "1627207:2660282734",
  115.  
    "url": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01DdCHQU1CzeydVRS55_!!375350152.jpg"
  116.  
    },
  117.  
    {
  118.  
    "properties": "1627207:22137857604",
  119.  
    "url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01Hqk9vC1CzeyiKLVnu_!!375350152.jpg"
  120.  
    }
  121.  
    ]
  122.  
    },
  123.  
    "props_imgs": {
  124.  
    "prop_img": [
  125.  
    {
  126.  
    "properties": "1627207:699580971",
  127.  
    "url": "//gd3.alicdn.com/imgextra/i2/375350152/O1CN01H4XinJ1Czey6MToNn_!!375350152.jpg"
  128.  
    },
  129.  
    {
  130.  
    "properties": "1627207:380978865",
  131.  
    "url": "//gd1.alicdn.com/imgextra/i2/375350152/O1CN01sM0z7W1Czey2YDkIa_!!375350152.jpg"
  132.  
    },
  133.  
    {
  134.  
    "properties": "1627207:382116126",
  135.  
    "url": "//gd1.alicdn.com/imgextra/i3/375350152/O1CN01w6EJJe1CzexzPAghY_!!375350152.jpg"
  136.  
    },
  137.  
    {
  138.  
    "properties": "1627207:395460484",
  139.  
    "url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01su0TZ51Czexx7bSnV_!!375350152.jpg"
  140.  
    },
  141.  
    {
  142.  
    "properties": "1627207:28320",
  143.  
    "url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01HqbMvX1Czey1petf7_!!375350152.jpg"
  144.  
    },
  145.  
    {
  146.  
    "properties": "1627207:28341",
  147.  
    "url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01PUBUiw1CzexyfeLx6_!!375350152.jpg"
  148.  
    },
  149.  
    {
  150.  
    "properties": "1627207:645576665",
  151.  
    "url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01OiITom1Czey8QKuYD_!!375350152.jpg"
  152.  
    },
  153.  
    {
  154.  
    "properties": "1627207:4966037",
  155.  
    "url": "//gd3.alicdn.com/imgextra/i4/375350152/O1CN01PZW6sZ1Czey1jHfau_!!375350152.jpg"
  156.  
    },
  157.  
    {
  158.  
    "properties": "1627207:6872191",
  159.  
    "url": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01xCRZUL1Czey1jFzdU_!!375350152.jpg"
  160.  
    },
  161.  
    {
  162.  
    "properties": "1627207:415218951",
  163.  
    "url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01DbJj421CzeyhKnnIG_!!375350152.jpg"
  164.  
    },
  165.  
    {
  166.  
    "properties": "1627207:813822022",
  167.  
    "url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN010VRMF31CzeyeGECLt_!!375350152.jpg"
  168.  
    },
  169.  
    {
  170.  
    "properties": "1627207:474390881",
  171.  
    "url": "//gd4.alicdn.com/imgextra/i3/375350152/O1CN01KYREIF1Czeyk6tTEN_!!375350152.jpg"
  172.  
    },
  173.  
    {
  174.  
    "properties": "1627207:799732754",
  175.  
    "url": "//gd2.alicdn.com/imgextra/i3/375350152/O1CN01p47Nai1CzeyXCIYsz_!!375350152.jpg"
  176.  
    },
  177.  
    {
  178.  
    "properties": "1627207:787450089",
  179.  
    "url": "//gd3.alicdn.com/imgextra/i1/375350152/O1CN01SSYebN1Czeyp0tfOD_!!375350152.jpg"
  180.  
    },
  181.  
    {
  182.  
    "properties": "1627207:902410152",
  183.  
    "url": "//gd2.alicdn.com/imgextra/i1/375350152/O1CN01JAdaTY1Czeyl1MWy1_!!375350152.jpg"
  184.  
    },
  185.  
    {
  186.  
    "properties": "1627207:2660282734",
  187.  
    "url": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01DdCHQU1CzeydVRS55_!!375350152.jpg"
  188.  
    },
  189.  
    {
  190.  
    "properties": "1627207:22137857604",
  191.  
    "url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01Hqk9vC1CzeyiKLVnu_!!375350152.jpg"
  192.  
    }
  193.  
    ]
  194.  
    },
  195.  
    "property_alias": "",
  196.  
    "props": [
  197.  
    {
  198.  
    "name": "品牌",
  199.  
    "value": "004"
  200.  
    },
  201.  
    {
  202.  
    "name": "尺码",
  203.  
    "value": "S M L XL 2XL 3XL"
  204.  
    },
  205.  
    {
  206.  
    "name": "面料分类",
  207.  
    "value": "棉"
  208.  
    },
  209.  
    {
  210.  
    "name": "图案",
  211.  
    "value": "字母/数字/文字"
  212.  
    },
  213.  
    {
  214.  
    "name": "领型",
  215.  
    "value": "圆领"
  216.  
    },
  217.  
    {
  218.  
    "name": "颜色",
  219.  
    "value": "白色 黑色 白色【加绒款】 黑色【加绒款】 酒红色【加绒款】 浅灰色【加绒款】 暗夜灰 牛仔蓝 豆绿色 黑色【新款】 藏青色【新款】 白色【新款】 卡其色【新款】 浅灰色【新款】 浅粉色【新款】 摩卡色【新款】 暗夜灰【新款】"
  220.  
    },
  221.  
    {
  222.  
    "name": "袖型",
  223.  
    "value": "常规"
  224.  
    },
  225.  
    {
  226.  
    "name": "货号",
  227.  
    "value": "0870"
  228.  
    },
  229.  
    {
  230.  
    "name": "细分风格",
  231.  
    "value": "潮"
  232.  
    },
  233.  
    {
  234.  
    "name": "基础风格",
  235.  
    "value": "青春流行"
  236.  
    },
  237.  
    {
  238.  
    "name": "适用季节",
  239.  
    "value": "秋季"
  240.  
    },
  241.  
    {
  242.  
    "name": "上市年份季节",
  243.  
    "value": "2022年秋季"
  244.  
    },
  245.  
    {
  246.  
    "name": "厚薄",
  247.  
    "value": "常规"
  248.  
    },
  249.  
    {
  250.  
    "name": "适用场景",
  251.  
    "value": "休闲"
  252.  
    },
  253.  
    {
  254.  
    "name": "版型",
  255.  
    "value": "宽松型"
  256.  
    },
  257.  
    {
  258.  
    "name": "服装款式细节",
  259.  
    "value": "印花"
  260.  
    },
  261.  
    {
  262.  
    "name": "服饰工艺",
  263.  
    "value": "免烫处理"
  264.  
    },
  265.  
    {
  266.  
    "name": "适用对象",
  267.  
    "value": "青少年"
  268.  
    },
  269.  
    {
  270.  
    "name": "款式",
  271.  
    "value": "套头"
  272.  
    },
  273.  
    {
  274.  
    "name": "面料功能",
  275.  
    "value": "抗菌"
  276.  
    },
  277.  
    {
  278.  
    "name": "上市时间",
  279.  
    "value": "2022"
  280.  
    },
  281.  
    {
  282.  
    "name": "材质成分",
  283.  
    "value": "棉100%"
  284.  
    }
  285.  
    ],
  286.  
    "total_sold": "2462",
  287.  
    "skus": {
  288.  
    "sku": [
  289.  
    {
  290.  
    "price": 89,
  291.  
    "total_price": 0,
  292.  
    "orginal_price": 149,
  293.  
    "properties": "20509:6145171;1627207:699580971",
  294.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:699580971:颜色:白色【加绒款】",
  295.  
    "quantity": 200,
  296.  
    "sku_id": "4865080536435"
  297.  
    },
  298.  
    {
  299.  
    "price": 149,
  300.  
    "total_price": 0,
  301.  
    "orginal_price": 149,
  302.  
    "properties": "20509:115781;1627207:699580971",
  303.  
    "properties_name": "20509:115781:尺码:3XL;1627207:699580971:颜色:白色【加绒款】",
  304.  
    "quantity": 0,
  305.  
    "sku_id": "4886479597911"
  306.  
    },
  307.  
    {
  308.  
    "price": 89,
  309.  
    "total_price": 0,
  310.  
    "orginal_price": 149,
  311.  
    "properties": "20509:28316;1627207:699580971",
  312.  
    "properties_name": "20509:28316:尺码:L;1627207:699580971:颜色:白色【加绒款】",
  313.  
    "quantity": 200,
  314.  
    "sku_id": "4865080536433"
  315.  
    },
  316.  
    {
  317.  
    "price": 89,
  318.  
    "total_price": 0,
  319.  
    "orginal_price": 149,
  320.  
    "properties": "20509:28315;1627207:699580971",
  321.  
    "properties_name": "20509:28315:尺码:M;1627207:699580971:颜色:白色【加绒款】",
  322.  
    "quantity": 200,
  323.  
    "sku_id": "4865080536432"
  324.  
    },
  325.  
    {
  326.  
    "price": 149,
  327.  
    "total_price": 0,
  328.  
    "orginal_price": 149,
  329.  
    "properties": "20509:28314;1627207:699580971",
  330.  
    "properties_name": "20509:28314:尺码:S;1627207:699580971:颜色:白色【加绒款】",
  331.  
    "quantity": 0,
  332.  
    "sku_id": "4865080536431"
  333.  
    },
  334.  
    {
  335.  
    "price": 89,
  336.  
    "total_price": 0,
  337.  
    "orginal_price": 149,
  338.  
    "properties": "20509:28317;1627207:699580971",
  339.  
    "properties_name": "20509:28317:尺码:XL;1627207:699580971:颜色:白色【加绒款】",
  340.  
    "quantity": 200,
  341.  
    "sku_id": "4865080536434"
  342.  
    },
  343.  
    {
  344.  
    "price": 89,
  345.  
    "total_price": 0,
  346.  
    "orginal_price": 149,
  347.  
    "properties": "20509:28316;1627207:380978865",
  348.  
    "properties_name": "20509:28316:尺码:L;1627207:380978865:颜色:黑色【加绒款】",
  349.  
    "quantity": 200,
  350.  
    "sku_id": "4865080536438"
  351.  
    },
  352.  
    {
  353.  
    "price": 89,
  354.  
    "total_price": 0,
  355.  
    "orginal_price": 149,
  356.  
    "properties": "20509:6145171;1627207:380978865",
  357.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:380978865:颜色:黑色【加绒款】",
  358.  
    "quantity": 200,
  359.  
    "sku_id": "4865080536440"
  360.  
    },
  361.  
    {
  362.  
    "price": 149,
  363.  
    "total_price": 0,
  364.  
    "orginal_price": 149,
  365.  
    "properties": "20509:115781;1627207:380978865",
  366.  
    "properties_name": "20509:115781:尺码:3XL;1627207:380978865:颜色:黑色【加绒款】",
  367.  
    "quantity": 0,
  368.  
    "sku_id": "4886479597905"
  369.  
    },
  370.  
    {
  371.  
    "price": 89,
  372.  
    "total_price": 0,
  373.  
    "orginal_price": 149,
  374.  
    "properties": "20509:28315;1627207:380978865",
  375.  
    "properties_name": "20509:28315:尺码:M;1627207:380978865:颜色:黑色【加绒款】",
  376.  
    "quantity": 200,
  377.  
    "sku_id": "4865080536437"
  378.  
    },
  379.  
    {
  380.  
    "price": 89,
  381.  
    "total_price": 0,
  382.  
    "orginal_price": 149,
  383.  
    "properties": "20509:28317;1627207:380978865",
  384.  
    "properties_name": "20509:28317:尺码:XL;1627207:380978865:颜色:黑色【加绒款】",
  385.  
    "quantity": 200,
  386.  
    "sku_id": "4865080536439"
  387.  
    },
  388.  
    {
  389.  
    "price": 149,
  390.  
    "total_price": 0,
  391.  
    "orginal_price": 149,
  392.  
    "properties": "20509:28314;1627207:380978865",
  393.  
    "properties_name": "20509:28314:尺码:S;1627207:380978865:颜色:黑色【加绒款】",
  394.  
    "quantity": 0,
  395.  
    "sku_id": "4865080536436"
  396.  
    },
  397.  
    {
  398.  
    "price": 149,
  399.  
    "total_price": 0,
  400.  
    "orginal_price": 149,
  401.  
    "properties": "20509:28314;1627207:382116126",
  402.  
    "properties_name": "20509:28314:尺码:S;1627207:382116126:颜色:酒红色【加绒款】",
  403.  
    "quantity": 0,
  404.  
    "sku_id": "4865080536441"
  405.  
    },
  406.  
    {
  407.  
    "price": 89,
  408.  
    "total_price": 0,
  409.  
    "orginal_price": 149,
  410.  
    "properties": "20509:28317;1627207:382116126",
  411.  
    "properties_name": "20509:28317:尺码:XL;1627207:382116126:颜色:酒红色【加绒款】",
  412.  
    "quantity": 200,
  413.  
    "sku_id": "4865080536444"
  414.  
    },
  415.  
    {
  416.  
    "price": 149,
  417.  
    "total_price": 0,
  418.  
    "orginal_price": 149,
  419.  
    "properties": "20509:115781;1627207:382116126",
  420.  
    "properties_name": "20509:115781:尺码:3XL;1627207:382116126:颜色:酒红色【加绒款】",
  421.  
    "quantity": 0,
  422.  
    "sku_id": "4886479597906"
  423.  
    },
  424.  
    {
  425.  
    "price": 89,
  426.  
    "total_price": 0,
  427.  
    "orginal_price": 149,
  428.  
    "properties": "20509:6145171;1627207:382116126",
  429.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:382116126:颜色:酒红色【加绒款】",
  430.  
    "quantity": 200,
  431.  
    "sku_id": "4865080536445"
  432.  
    },
  433.  
    {
  434.  
    "price": 89,
  435.  
    "total_price": 0,
  436.  
    "orginal_price": 149,
  437.  
    "properties": "20509:28315;1627207:382116126",
  438.  
    "properties_name": "20509:28315:尺码:M;1627207:382116126:颜色:酒红色【加绒款】",
  439.  
    "quantity": 200,
  440.  
    "sku_id": "4865080536442"
  441.  
    },
  442.  
    {
  443.  
    "price": 89,
  444.  
    "total_price": 0,
  445.  
    "orginal_price": 149,
  446.  
    "properties": "20509:28316;1627207:382116126",
  447.  
    "properties_name": "20509:28316:尺码:L;1627207:382116126:颜色:酒红色【加绒款】",
  448.  
    "quantity": 200,
  449.  
    "sku_id": "4865080536443"
  450.  
    },
  451.  
    {
  452.  
    "price": 89,
  453.  
    "total_price": 0,
  454.  
    "orginal_price": 149,
  455.  
    "properties": "20509:28315;1627207:395460484",
  456.  
    "properties_name": "20509:28315:尺码:M;1627207:395460484:颜色:浅灰色【加绒款】",
  457.  
    "quantity": 200,
  458.  
    "sku_id": "4865080536452"
  459.  
    },
  460.  
    {
  461.  
    "price": 89,
  462.  
    "total_price": 0,
  463.  
    "orginal_price": 149,
  464.  
    "properties": "20509:28316;1627207:395460484",
  465.  
    "properties_name": "20509:28316:尺码:L;1627207:395460484:颜色:浅灰色【加绒款】",
  466.  
    "quantity": 200,
  467.  
    "sku_id": "4865080536453"
  468.  
    },
  469.  
    {
  470.  
    "price": 149,
  471.  
    "total_price": 0,
  472.  
    "orginal_price": 149,
  473.  
    "properties": "20509:28314;1627207:395460484",
  474.  
    "properties_name": "20509:28314:尺码:S;1627207:395460484:颜色:浅灰色【加绒款】",
  475.  
    "quantity": 0,
  476.  
    "sku_id": "4865080536451"
  477.  
    },
  478.  
    {
  479.  
    "price": 89,
  480.  
    "total_price": 0,
  481.  
    "orginal_price": 149,
  482.  
    "properties": "20509:28317;1627207:395460484",
  483.  
    "properties_name": "20509:28317:尺码:XL;1627207:395460484:颜色:浅灰色【加绒款】",
  484.  
    "quantity": 200,
  485.  
    "sku_id": "4865080536454"
  486.  
    },
  487.  
    {
  488.  
    "price": 89,
  489.  
    "total_price": 0,
  490.  
    "orginal_price": 149,
  491.  
    "properties": "20509:6145171;1627207:395460484",
  492.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:395460484:颜色:浅灰色【加绒款】",
  493.  
    "quantity": 200,
  494.  
    "sku_id": "4865080536455"
  495.  
    },
  496.  
    {
  497.  
    "price": 149,
  498.  
    "total_price": 0,
  499.  
    "orginal_price": 149,
  500.  
    "properties": "20509:115781;1627207:395460484",
  501.  
    "properties_name": "20509:115781:尺码:3XL;1627207:395460484:颜色:浅灰色【加绒款】",
  502.  
    "quantity": 0,
  503.  
    "sku_id": "4886479597907"
  504.  
    },
  505.  
    {
  506.  
    "price": 129,
  507.  
    "total_price": 0,
  508.  
    "orginal_price": 129,
  509.  
    "properties": "20509:28316;1627207:28320",
  510.  
    "properties_name": "20509:28316:尺码:L;1627207:28320:颜色:白色",
  511.  
    "quantity": 0,
  512.  
    "sku_id": "4865080536458"
  513.  
    },
  514.  
    {
  515.  
    "price": 69,
  516.  
    "total_price": 0,
  517.  
    "orginal_price": 129,
  518.  
    "properties": "20509:6145171;1627207:28320",
  519.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:28320:颜色:白色",
  520.  
    "quantity": 43,
  521.  
    "sku_id": "4865080536460"
  522.  
    },
  523.  
    {
  524.  
    "price": 129,
  525.  
    "total_price": 0,
  526.  
    "orginal_price": 129,
  527.  
    "properties": "20509:28317;1627207:28320",
  528.  
    "properties_name": "20509:28317:尺码:XL;1627207:28320:颜色:白色",
  529.  
    "quantity": 0,
  530.  
    "sku_id": "4865080536459"
  531.  
    },
  532.  
    {
  533.  
    "price": 129,
  534.  
    "total_price": 0,
  535.  
    "orginal_price": 129,
  536.  
    "properties": "20509:28314;1627207:28320",
  537.  
    "properties_name": "20509:28314:尺码:S;1627207:28320:颜色:白色",
  538.  
    "quantity": 0,
  539.  
    "sku_id": "4865080536456"
  540.  
    },
  541.  
    {
  542.  
    "price": 129,
  543.  
    "total_price": 0,
  544.  
    "orginal_price": 129,
  545.  
    "properties": "20509:115781;1627207:28320",
  546.  
    "properties_name": "20509:115781:尺码:3XL;1627207:28320:颜色:白色",
  547.  
    "quantity": 0,
  548.  
    "sku_id": "4886479597901"
  549.  
    },
  550.  
    {
  551.  
    "price": 129,
  552.  
    "total_price": 0,
  553.  
    "orginal_price": 129,
  554.  
    "properties": "20509:28315;1627207:28320",
  555.  
    "properties_name": "20509:28315:尺码:M;1627207:28320:颜色:白色",
  556.  
    "quantity": 0,
  557.  
    "sku_id": "4865080536457"
  558.  
    },
  559.  
    {
  560.  
    "price": 69,
  561.  
    "total_price": 0,
  562.  
    "orginal_price": 129,
  563.  
    "properties": "20509:28314;1627207:28341",
  564.  
    "properties_name": "20509:28314:尺码:S;1627207:28341:颜色:黑色",
  565.  
    "quantity": 200,
  566.  
    "sku_id": "4865080536461"
  567.  
    },
  568.  
    {
  569.  
    "price": 69,
  570.  
    "total_price": 0,
  571.  
    "orginal_price": 129,
  572.  
    "properties": "20509:6145171;1627207:28341",
  573.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:28341:颜色:黑色",
  574.  
    "quantity": 200,
  575.  
    "sku_id": "4865080536465"
  576.  
    },
  577.  
    {
  578.  
    "price": 69,
  579.  
    "total_price": 0,
  580.  
    "orginal_price": 129,
  581.  
    "properties": "20509:28317;1627207:28341",
  582.  
    "properties_name": "20509:28317:尺码:XL;1627207:28341:颜色:黑色",
  583.  
    "quantity": 200,
  584.  
    "sku_id": "4865080536464"
  585.  
    },
  586.  
    {
  587.  
    "price": 129,
  588.  
    "total_price": 0,
  589.  
    "orginal_price": 129,
  590.  
    "properties": "20509:115781;1627207:28341",
  591.  
    "properties_name": "20509:115781:尺码:3XL;1627207:28341:颜色:黑色",
  592.  
    "quantity": 0,
  593.  
    "sku_id": "4886479597904"
  594.  
    },
  595.  
    {
  596.  
    "price": 69,
  597.  
    "total_price": 0,
  598.  
    "orginal_price": 129,
  599.  
    "properties": "20509:28315;1627207:28341",
  600.  
    "properties_name": "20509:28315:尺码:M;1627207:28341:颜色:黑色",
  601.  
    "quantity": 200,
  602.  
    "sku_id": "4865080536462"
  603.  
    },
  604.  
    {
  605.  
    "price": 69,
  606.  
    "total_price": 0,
  607.  
    "orginal_price": 129,
  608.  
    "properties": "20509:28316;1627207:28341",
  609.  
    "properties_name": "20509:28316:尺码:L;1627207:28341:颜色:黑色",
  610.  
    "quantity": 200,
  611.  
    "sku_id": "4865080536463"
  612.  
    },
  613.  
    {
  614.  
    "price": 69,
  615.  
    "total_price": 0,
  616.  
    "orginal_price": 129,
  617.  
    "properties": "20509:28316;1627207:645576665",
  618.  
    "properties_name": "20509:28316:尺码:L;1627207:645576665:颜色:暗夜灰",
  619.  
    "quantity": 200,
  620.  
    "sku_id": "4865080536473"
  621.  
    },
  622.  
    {
  623.  
    "price": 69,
  624.  
    "total_price": 0,
  625.  
    "orginal_price": 129,
  626.  
    "properties": "20509:28317;1627207:645576665",
  627.  
    "properties_name": "20509:28317:尺码:XL;1627207:645576665:颜色:暗夜灰",
  628.  
    "quantity": 200,
  629.  
    "sku_id": "4865080536474"
  630.  
    },
  631.  
    {
  632.  
    "price": 69,
  633.  
    "total_price": 0,
  634.  
    "orginal_price": 129,
  635.  
    "properties": "20509:28315;1627207:645576665",
  636.  
    "properties_name": "20509:28315:尺码:M;1627207:645576665:颜色:暗夜灰",
  637.  
    "quantity": 200,
  638.  
    "sku_id": "4865080536472"
  639.  
    },
  640.  
    {
  641.  
    "price": 69,
  642.  
    "total_price": 0,
  643.  
    "orginal_price": 129,
  644.  
    "properties": "20509:28314;1627207:645576665",
  645.  
    "properties_name": "20509:28314:尺码:S;1627207:645576665:颜色:暗夜灰",
  646.  
    "quantity": 200,
  647.  
    "sku_id": "4865080536471"
  648.  
    },
  649.  
    {
  650.  
    "price": 69,
  651.  
    "total_price": 0,
  652.  
    "orginal_price": 129,
  653.  
    "properties": "20509:6145171;1627207:645576665",
  654.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:645576665:颜色:暗夜灰",
  655.  
    "quantity": 200,
  656.  
    "sku_id": "4865080536475"
  657.  
    },
  658.  
    {
  659.  
    "price": 129,
  660.  
    "total_price": 0,
  661.  
    "orginal_price": 129,
  662.  
    "properties": "20509:115781;1627207:645576665",
  663.  
    "properties_name": "20509:115781:尺码:3XL;1627207:645576665:颜色:暗夜灰",
  664.  
    "quantity": 0,
  665.  
    "sku_id": "4886479597909"
  666.  
    },
  667.  
    {
  668.  
    "price": 69,
  669.  
    "total_price": 0,
  670.  
    "orginal_price": 129,
  671.  
    "properties": "20509:28315;1627207:4966037",
  672.  
    "properties_name": "20509:28315:尺码:M;1627207:4966037:颜色:牛仔蓝",
  673.  
    "quantity": 200,
  674.  
    "sku_id": "4865080536487"
  675.  
    },
  676.  
    {
  677.  
    "price": 69,
  678.  
    "total_price": 0,
  679.  
    "orginal_price": 129,
  680.  
    "properties": "20509:28317;1627207:4966037",
  681.  
    "properties_name": "20509:28317:尺码:XL;1627207:4966037:颜色:牛仔蓝",
  682.  
    "quantity": 200,
  683.  
    "sku_id": "4865080536489"
  684.  
    },
  685.  
    {
  686.  
    "price": 69,
  687.  
    "total_price": 0,
  688.  
    "orginal_price": 129,
  689.  
    "properties": "20509:28314;1627207:4966037",
  690.  
    "properties_name": "20509:28314:尺码:S;1627207:4966037:颜色:牛仔蓝",
  691.  
    "quantity": 200,
  692.  
    "sku_id": "4865080536486"
  693.  
    },
  694.  
    {
  695.  
    "price": 69,
  696.  
    "total_price": 0,
  697.  
    "orginal_price": 129,
  698.  
    "properties": "20509:6145171;1627207:4966037",
  699.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:4966037:颜色:牛仔蓝",
  700.  
    "quantity": 200,
  701.  
    "sku_id": "4865080536490"
  702.  
    },
  703.  
    {
  704.  
    "price": 129,
  705.  
    "total_price": 0,
  706.  
    "orginal_price": 129,
  707.  
    "properties": "20509:115781;1627207:4966037",
  708.  
    "properties_name": "20509:115781:尺码:3XL;1627207:4966037:颜色:牛仔蓝",
  709.  
    "quantity": 0,
  710.  
    "sku_id": "4886479597908"
  711.  
    },
  712.  
    {
  713.  
    "price": 69,
  714.  
    "total_price": 0,
  715.  
    "orginal_price": 129,
  716.  
    "properties": "20509:28316;1627207:4966037",
  717.  
    "properties_name": "20509:28316:尺码:L;1627207:4966037:颜色:牛仔蓝",
  718.  
    "quantity": 200,
  719.  
    "sku_id": "4865080536488"
  720.  
    },
  721.  
    {
  722.  
    "price": 129,
  723.  
    "total_price": 0,
  724.  
    "orginal_price": 129,
  725.  
    "properties": "20509:28315;1627207:6872191",
  726.  
    "properties_name": "20509:28315:尺码:M;1627207:6872191:颜色:豆绿色",
  727.  
    "quantity": 0,
  728.  
    "sku_id": "4865080536502"
  729.  
    },
  730.  
    {
  731.  
    "price": 69,
  732.  
    "total_price": 0,
  733.  
    "orginal_price": 129,
  734.  
    "properties": "20509:28317;1627207:6872191",
  735.  
    "properties_name": "20509:28317:尺码:XL;1627207:6872191:颜色:豆绿色",
  736.  
    "quantity": 200,
  737.  
    "sku_id": "4865080536504"
  738.  
    },
  739.  
    {
  740.  
    "price": 129,
  741.  
    "total_price": 0,
  742.  
    "orginal_price": 129,
  743.  
    "properties": "20509:115781;1627207:6872191",
  744.  
    "properties_name": "20509:115781:尺码:3XL;1627207:6872191:颜色:豆绿色",
  745.  
    "quantity": 0,
  746.  
    "sku_id": "4886479597910"
  747.  
    },
  748.  
    {
  749.  
    "price": 129,
  750.  
    "total_price": 0,
  751.  
    "orginal_price": 129,
  752.  
    "properties": "20509:28314;1627207:6872191",
  753.  
    "properties_name": "20509:28314:尺码:S;1627207:6872191:颜色:豆绿色",
  754.  
    "quantity": 0,
  755.  
    "sku_id": "4865080536501"
  756.  
    },
  757.  
    {
  758.  
    "price": 69,
  759.  
    "total_price": 0,
  760.  
    "orginal_price": 129,
  761.  
    "properties": "20509:28316;1627207:6872191",
  762.  
    "properties_name": "20509:28316:尺码:L;1627207:6872191:颜色:豆绿色",
  763.  
    "quantity": 200,
  764.  
    "sku_id": "4865080536503"
  765.  
    },
  766.  
    {
  767.  
    "price": 69,
  768.  
    "total_price": 0,
  769.  
    "orginal_price": 129,
  770.  
    "properties": "20509:6145171;1627207:6872191",
  771.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:6872191:颜色:豆绿色",
  772.  
    "quantity": 200,
  773.  
    "sku_id": "4865080536505"
  774.  
    },
  775.  
    {
  776.  
    "price": 79,
  777.  
    "total_price": 0,
  778.  
    "orginal_price": 139,
  779.  
    "properties": "20509:28317;1627207:415218951",
  780.  
    "properties_name": "20509:28317:尺码:XL;1627207:415218951:颜色:黑色【新款】",
  781.  
    "quantity": 200,
  782.  
    "sku_id": "4887511853504"
  783.  
    },
  784.  
    {
  785.  
    "price": 139,
  786.  
    "total_price": 0,
  787.  
    "orginal_price": 139,
  788.  
    "properties": "20509:28314;1627207:415218951",
  789.  
    "properties_name": "20509:28314:尺码:S;1627207:415218951:颜色:黑色【新款】",
  790.  
    "quantity": 0,
  791.  
    "sku_id": "4887511853495"
  792.  
    },
  793.  
    {
  794.  
    "price": 79,
  795.  
    "total_price": 0,
  796.  
    "orginal_price": 139,
  797.  
    "properties": "20509:28315;1627207:415218951",
  798.  
    "properties_name": "20509:28315:尺码:M;1627207:415218951:颜色:黑色【新款】",
  799.  
    "quantity": 200,
  800.  
    "sku_id": "4887511853498"
  801.  
    },
  802.  
    {
  803.  
    "price": 79,
  804.  
    "total_price": 0,
  805.  
    "orginal_price": 139,
  806.  
    "properties": "20509:28316;1627207:415218951",
  807.  
    "properties_name": "20509:28316:尺码:L;1627207:415218951:颜色:黑色【新款】",
  808.  
    "quantity": 200,
  809.  
    "sku_id": "4887511853501"
  810.  
    },
  811.  
    {
  812.  
    "price": 79,
  813.  
    "total_price": 0,
  814.  
    "orginal_price": 139,
  815.  
    "properties": "20509:6145171;1627207:415218951",
  816.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:415218951:颜色:黑色【新款】",
  817.  
    "quantity": 200,
  818.  
    "sku_id": "4887511853507"
  819.  
    },
  820.  
    {
  821.  
    "price": 79,
  822.  
    "total_price": 0,
  823.  
    "orginal_price": 139,
  824.  
    "properties": "20509:115781;1627207:415218951",
  825.  
    "properties_name": "20509:115781:尺码:3XL;1627207:415218951:颜色:黑色【新款】",
  826.  
    "quantity": 200,
  827.  
    "sku_id": "4887511853492"
  828.  
    },
  829.  
    {
  830.  
    "price": 79,
  831.  
    "total_price": 0,
  832.  
    "orginal_price": 139,
  833.  
    "properties": "20509:6145171;1627207:813822022",
  834.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:813822022:颜色:藏青色【新款】",
  835.  
    "quantity": 200,
  836.  
    "sku_id": "4886479597930"
  837.  
    },
  838.  
    {
  839.  
    "price": 79,
  840.  
    "total_price": 0,
  841.  
    "orginal_price": 139,
  842.  
    "properties": "20509:115781;1627207:813822022",
  843.  
    "properties_name": "20509:115781:尺码:3XL;1627207:813822022:颜色:藏青色【新款】",
  844.  
    "quantity": 200,
  845.  
    "sku_id": "4886479597899"
  846.  
    },
  847.  
    {
  848.  
    "price": 79,
  849.  
    "total_price": 0,
  850.  
    "orginal_price": 139,
  851.  
    "properties": "20509:28317;1627207:813822022",
  852.  
    "properties_name": "20509:28317:尺码:XL;1627207:813822022:颜色:藏青色【新款】",
  853.  
    "quantity": 200,
  854.  
    "sku_id": "4886479597926"
  855.  
    },
  856.  
    {
  857.  
    "price": 139,
  858.  
    "total_price": 0,
  859.  
    "orginal_price": 139,
  860.  
    "properties": "20509:28314;1627207:813822022",
  861.  
    "properties_name": "20509:28314:尺码:S;1627207:813822022:颜色:藏青色【新款】",
  862.  
    "quantity": 0,
  863.  
    "sku_id": "4886479597914"
  864.  
    },
  865.  
    {
  866.  
    "price": 79,
  867.  
    "total_price": 0,
  868.  
    "orginal_price": 139,
  869.  
    "properties": "20509:28316;1627207:813822022",
  870.  
    "properties_name": "20509:28316:尺码:L;1627207:813822022:颜色:藏青色【新款】",
  871.  
    "quantity": 200,
  872.  
    "sku_id": "4886479597922"
  873.  
    },
  874.  
    {
  875.  
    "price": 79,
  876.  
    "total_price": 0,
  877.  
    "orginal_price": 139,
  878.  
    "properties": "20509:28315;1627207:813822022",
  879.  
    "properties_name": "20509:28315:尺码:M;1627207:813822022:颜色:藏青色【新款】",
  880.  
    "quantity": 200,
  881.  
    "sku_id": "4886479597918"
  882.  
    },
  883.  
    {
  884.  
    "price": 79,
  885.  
    "total_price": 0,
  886.  
    "orginal_price": 139,
  887.  
    "properties": "20509:28317;1627207:474390881",
  888.  
    "properties_name": "20509:28317:尺码:XL;1627207:474390881:颜色:白色【新款】",
  889.  
    "quantity": 200,
  890.  
    "sku_id": "4882262308411"
  891.  
    },
  892.  
    {
  893.  
    "price": 79,
  894.  
    "total_price": 0,
  895.  
    "orginal_price": 139,
  896.  
    "properties": "20509:28316;1627207:474390881",
  897.  
    "properties_name": "20509:28316:尺码:L;1627207:474390881:颜色:白色【新款】",
  898.  
    "quantity": 200,
  899.  
    "sku_id": "4882262308410"
  900.  
    },
  901.  
    {
  902.  
    "price": 139,
  903.  
    "total_price": 0,
  904.  
    "orginal_price": 139,
  905.  
    "properties": "20509:28314;1627207:474390881",
  906.  
    "properties_name": "20509:28314:尺码:S;1627207:474390881:颜色:白色【新款】",
  907.  
    "quantity": 0,
  908.  
    "sku_id": "4882262308408"
  909.  
    },
  910.  
    {
  911.  
    "price": 79,
  912.  
    "total_price": 0,
  913.  
    "orginal_price": 139,
  914.  
    "properties": "20509:28315;1627207:474390881",
  915.  
    "properties_name": "20509:28315:尺码:M;1627207:474390881:颜色:白色【新款】",
  916.  
    "quantity": 200,
  917.  
    "sku_id": "4882262308409"
  918.  
    },
  919.  
    {
  920.  
    "price": 79,
  921.  
    "total_price": 0,
  922.  
    "orginal_price": 139,
  923.  
    "properties": "20509:6145171;1627207:474390881",
  924.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:474390881:颜色:白色【新款】",
  925.  
    "quantity": 200,
  926.  
    "sku_id": "4882262308412"
  927.  
    },
  928.  
    {
  929.  
    "price": 79,
  930.  
    "total_price": 0,
  931.  
    "orginal_price": 139,
  932.  
    "properties": "20509:115781;1627207:474390881",
  933.  
    "properties_name": "20509:115781:尺码:3XL;1627207:474390881:颜色:白色【新款】",
  934.  
    "quantity": 200,
  935.  
    "sku_id": "4882262308407"
  936.  
    },
  937.  
    {
  938.  
    "price": 79,
  939.  
    "total_price": 0,
  940.  
    "orginal_price": 139,
  941.  
    "properties": "20509:28315;1627207:799732754",
  942.  
    "properties_name": "20509:28315:尺码:M;1627207:799732754:颜色:卡其色【新款】",
  943.  
    "quantity": 200,
  944.  
    "sku_id": "4887511853499"
  945.  
    },
  946.  
    {
  947.  
    "price": 79,
  948.  
    "total_price": 0,
  949.  
    "orginal_price": 139,
  950.  
    "properties": "20509:6145171;1627207:799732754",
  951.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:799732754:颜色:卡其色【新款】",
  952.  
    "quantity": 200,
  953.  
    "sku_id": "4887511853508"
  954.  
    },
  955.  
    {
  956.  
    "price": 79,
  957.  
    "total_price": 0,
  958.  
    "orginal_price": 139,
  959.  
    "properties": "20509:28316;1627207:799732754",
  960.  
    "properties_name": "20509:28316:尺码:L;1627207:799732754:颜色:卡其色【新款】",
  961.  
    "quantity": 200,
  962.  
    "sku_id": "4887511853502"
  963.  
    },
  964.  
    {
  965.  
    "price": 139,
  966.  
    "total_price": 0,
  967.  
    "orginal_price": 139,
  968.  
    "properties": "20509:28314;1627207:799732754",
  969.  
    "properties_name": "20509:28314:尺码:S;1627207:799732754:颜色:卡其色【新款】",
  970.  
    "quantity": 0,
  971.  
    "sku_id": "4887511853496"
  972.  
    },
  973.  
    {
  974.  
    "price": 79,
  975.  
    "total_price": 0,
  976.  
    "orginal_price": 139,
  977.  
    "properties": "20509:28317;1627207:799732754",
  978.  
    "properties_name": "20509:28317:尺码:XL;1627207:799732754:颜色:卡其色【新款】",
  979.  
    "quantity": 200,
  980.  
    "sku_id": "4887511853505"
  981.  
    },
  982.  
    {
  983.  
    "price": 79,
  984.  
    "total_price": 0,
  985.  
    "orginal_price": 139,
  986.  
    "properties": "20509:115781;1627207:799732754",
  987.  
    "properties_name": "20509:115781:尺码:3XL;1627207:799732754:颜色:卡其色【新款】",
  988.  
    "quantity": 200,
  989.  
    "sku_id": "4887511853493"
  990.  
    },
  991.  
    {
  992.  
    "price": 79,
  993.  
    "total_price": 0,
  994.  
    "orginal_price": 139,
  995.  
    "properties": "20509:28317;1627207:787450089",
  996.  
    "properties_name": "20509:28317:尺码:XL;1627207:787450089:颜色:浅灰色【新款】",
  997.  
    "quantity": 200,
  998.  
    "sku_id": "4886479597925"
  999.  
    },
  1000.  
    {
  1001.  
    "price": 79,
  1002.  
    "total_price": 0,
  1003.  
    "orginal_price": 139,
  1004.  
    "properties": "20509:6145171;1627207:787450089",
  1005.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:787450089:颜色:浅灰色【新款】",
  1006.  
    "quantity": 200,
  1007.  
    "sku_id": "4886479597929"
  1008.  
    },
  1009.  
    {
  1010.  
    "price": 79,
  1011.  
    "total_price": 0,
  1012.  
    "orginal_price": 139,
  1013.  
    "properties": "20509:115781;1627207:787450089",
  1014.  
    "properties_name": "20509:115781:尺码:3XL;1627207:787450089:颜色:浅灰色【新款】",
  1015.  
    "quantity": 200,
  1016.  
    "sku_id": "4886479597898"
  1017.  
    },
  1018.  
    {
  1019.  
    "price": 79,
  1020.  
    "total_price": 0,
  1021.  
    "orginal_price": 139,
  1022.  
    "properties": "20509:28315;1627207:787450089",
  1023.  
    "properties_name": "20509:28315:尺码:M;1627207:787450089:颜色:浅灰色【新款】",
  1024.  
    "quantity": 200,
  1025.  
    "sku_id": "4886479597917"
  1026.  
    },
  1027.  
    {
  1028.  
    "price": 139,
  1029.  
    "total_price": 0,
  1030.  
    "orginal_price": 139,
  1031.  
    "properties": "20509:28314;1627207:787450089",
  1032.  
    "properties_name": "20509:28314:尺码:S;1627207:787450089:颜色:浅灰色【新款】",
  1033.  
    "quantity": 0,
  1034.  
    "sku_id": "4886479597913"
  1035.  
    },
  1036.  
    {
  1037.  
    "price": 79,
  1038.  
    "total_price": 0,
  1039.  
    "orginal_price": 139,
  1040.  
    "properties": "20509:28316;1627207:787450089",
  1041.  
    "properties_name": "20509:28316:尺码:L;1627207:787450089:颜色:浅灰色【新款】",
  1042.  
    "quantity": 200,
  1043.  
    "sku_id": "4886479597921"
  1044.  
    },
  1045.  
    {
  1046.  
    "price": 79,
  1047.  
    "total_price": 0,
  1048.  
    "orginal_price": 139,
  1049.  
    "properties": "20509:6145171;1627207:902410152",
  1050.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:902410152:颜色:浅粉色【新款】",
  1051.  
    "quantity": 200,
  1052.  
    "sku_id": "4886479597931"
  1053.  
    },
  1054.  
    {
  1055.  
    "price": 79,
  1056.  
    "total_price": 0,
  1057.  
    "orginal_price": 139,
  1058.  
    "properties": "20509:115781;1627207:902410152",
  1059.  
    "properties_name": "20509:115781:尺码:3XL;1627207:902410152:颜色:浅粉色【新款】",
  1060.  
    "quantity": 200,
  1061.  
    "sku_id": "4886479597900"
  1062.  
    },
  1063.  
    {
  1064.  
    "price": 79,
  1065.  
    "total_price": 0,
  1066.  
    "orginal_price": 139,
  1067.  
    "properties": "20509:28316;1627207:902410152",
  1068.  
    "properties_name": "20509:28316:尺码:L;1627207:902410152:颜色:浅粉色【新款】",
  1069.  
    "quantity": 200,
  1070.  
    "sku_id": "4886479597923"
  1071.  
    },
  1072.  
    {
  1073.  
    "price": 79,
  1074.  
    "total_price": 0,
  1075.  
    "orginal_price": 139,
  1076.  
    "properties": "20509:28317;1627207:902410152",
  1077.  
    "properties_name": "20509:28317:尺码:XL;1627207:902410152:颜色:浅粉色【新款】",
  1078.  
    "quantity": 200,
  1079.  
    "sku_id": "4886479597927"
  1080.  
    },
  1081.  
    {
  1082.  
    "price": 79,
  1083.  
    "total_price": 0,
  1084.  
    "orginal_price": 139,
  1085.  
    "properties": "20509:28315;1627207:902410152",
  1086.  
    "properties_name": "20509:28315:尺码:M;1627207:902410152:颜色:浅粉色【新款】",
  1087.  
    "quantity": 200,
  1088.  
    "sku_id": "4886479597919"
  1089.  
    },
  1090.  
    {
  1091.  
    "price": 139,
  1092.  
    "total_price": 0,
  1093.  
    "orginal_price": 139,
  1094.  
    "properties": "20509:28314;1627207:902410152",
  1095.  
    "properties_name": "20509:28314:尺码:S;1627207:902410152:颜色:浅粉色【新款】",
  1096.  
    "quantity": 0,
  1097.  
    "sku_id": "4886479597915"
  1098.  
    },
  1099.  
    {
  1100.  
    "price": 139,
  1101.  
    "total_price": 0,
  1102.  
    "orginal_price": 139,
  1103.  
    "properties": "20509:28314;1627207:2660282734",
  1104.  
    "properties_name": "20509:28314:尺码:S;1627207:2660282734:颜色:摩卡色【新款】",
  1105.  
    "quantity": 0,
  1106.  
    "sku_id": "4886479597912"
  1107.  
    },
  1108.  
    {
  1109.  
    "price": 79,
  1110.  
    "total_price": 0,
  1111.  
    "orginal_price": 139,
  1112.  
    "properties": "20509:28315;1627207:2660282734",
  1113.  
    "properties_name": "20509:28315:尺码:M;1627207:2660282734:颜色:摩卡色【新款】",
  1114.  
    "quantity": 200,
  1115.  
    "sku_id": "4886479597916"
  1116.  
    },
  1117.  
    {
  1118.  
    "price": 79,
  1119.  
    "total_price": 0,
  1120.  
    "orginal_price": 139,
  1121.  
    "properties": "20509:28316;1627207:2660282734",
  1122.  
    "properties_name": "20509:28316:尺码:L;1627207:2660282734:颜色:摩卡色【新款】",
  1123.  
    "quantity": 200,
  1124.  
    "sku_id": "4886479597920"
  1125.  
    },
  1126.  
    {
  1127.  
    "price": 79,
  1128.  
    "total_price": 0,
  1129.  
    "orginal_price": 139,
  1130.  
    "properties": "20509:115781;1627207:2660282734",
  1131.  
    "properties_name": "20509:115781:尺码:3XL;1627207:2660282734:颜色:摩卡色【新款】",
  1132.  
    "quantity": 200,
  1133.  
    "sku_id": "4886479597897"
  1134.  
    },
  1135.  
    {
  1136.  
    "price": 79,
  1137.  
    "total_price": 0,
  1138.  
    "orginal_price": 139,
  1139.  
    "properties": "20509:6145171;1627207:2660282734",
  1140.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:2660282734:颜色:摩卡色【新款】",
  1141.  
    "quantity": 200,
  1142.  
    "sku_id": "4886479597928"
  1143.  
    },
  1144.  
    {
  1145.  
    "price": 79,
  1146.  
    "total_price": 0,
  1147.  
    "orginal_price": 139,
  1148.  
    "properties": "20509:28317;1627207:2660282734",
  1149.  
    "properties_name": "20509:28317:尺码:XL;1627207:2660282734:颜色:摩卡色【新款】",
  1150.  
    "quantity": 200,
  1151.  
    "sku_id": "4886479597924"
  1152.  
    },
  1153.  
    {
  1154.  
    "price": 79,
  1155.  
    "total_price": 0,
  1156.  
    "orginal_price": 139,
  1157.  
    "properties": "20509:28317;1627207:22137857604",
  1158.  
    "properties_name": "20509:28317:尺码:XL;1627207:22137857604:颜色:暗夜灰【新款】",
  1159.  
    "quantity": 200,
  1160.  
    "sku_id": "4887511853506"
  1161.  
    },
  1162.  
    {
  1163.  
    "price": 79,
  1164.  
    "total_price": 0,
  1165.  
    "orginal_price": 139,
  1166.  
    "properties": "20509:28316;1627207:22137857604",
  1167.  
    "properties_name": "20509:28316:尺码:L;1627207:22137857604:颜色:暗夜灰【新款】",
  1168.  
    "quantity": 200,
  1169.  
    "sku_id": "4887511853503"
  1170.  
    },
  1171.  
    {
  1172.  
    "price": 79,
  1173.  
    "total_price": 0,
  1174.  
    "orginal_price": 139,
  1175.  
    "properties": "20509:28315;1627207:22137857604",
  1176.  
    "properties_name": "20509:28315:尺码:M;1627207:22137857604:颜色:暗夜灰【新款】",
  1177.  
    "quantity": 200,
  1178.  
    "sku_id": "4887511853500"
  1179.  
    },
  1180.  
    {
  1181.  
    "price": 79,
  1182.  
    "total_price": 0,
  1183.  
    "orginal_price": 139,
  1184.  
    "properties": "20509:6145171;1627207:22137857604",
  1185.  
    "properties_name": "20509:6145171:尺码:2XL;1627207:22137857604:颜色:暗夜灰【新款】",
  1186.  
    "quantity": 200,
  1187.  
    "sku_id": "4887511853509"
  1188.  
    },
  1189.  
    {
  1190.  
    "price": 79,
  1191.  
    "total_price": 0,
  1192.  
    "orginal_price": 139,
  1193.  
    "properties": "20509:115781;1627207:22137857604",
  1194.  
    "properties_name": "20509:115781:尺码:3XL;1627207:22137857604:颜色:暗夜灰【新款】",
  1195.  
    "quantity": 200,
  1196.  
    "sku_id": "4887511853494"
  1197.  
    },
  1198.  
    {
  1199.  
    "price": 139,
  1200.  
    "total_price": 0,
  1201.  
    "orginal_price": 139,
  1202.  
    "properties": "20509:28314;1627207:22137857604",
  1203.  
    "properties_name": "20509:28314:尺码:S;1627207:22137857604:颜色:暗夜灰【新款】",
  1204.  
    "quantity": 0,
  1205.  
    "sku_id": "4887511853497"
  1206.  
    }
  1207.  
    ]
  1208.  
    },
  1209.  
    "seller_id": "375350152",
  1210.  
    "sales": 2462,
  1211.  
    "shop_id": "67147218",
  1212.  
    "props_list": {
  1213.  
    "20509:28314": "尺码:S",
  1214.  
    "20509:28315": "尺码:M",
  1215.  
    "20509:28316": "尺码:L",
  1216.  
    "20509:28317": "尺码:XL",
  1217.  
    "20509:6145171": "尺码:2XL",
  1218.  
    "20509:115781": "尺码:3XL",
  1219.  
    "1627207:699580971": "颜色:白色【加绒款】",
  1220.  
    "1627207:380978865": "颜色:黑色【加绒款】",
  1221.  
    "1627207:382116126": "颜色:酒红色【加绒款】",
  1222.  
    "1627207:395460484": "颜色:浅灰色【加绒款】",
  1223.  
    "1627207:28320": "颜色:白色",
  1224.  
    "1627207:28341": "颜色:黑色",
  1225.  
    "1627207:645576665": "颜色:暗夜灰",
  1226.  
    "1627207:4966037": "颜色:牛仔蓝",
  1227.  
    "1627207:6872191": "颜色:豆绿色",
  1228.  
    "1627207:415218951": "颜色:黑色【新款】",
  1229.  
    "1627207:813822022": "颜色:藏青色【新款】",
  1230.  
    "1627207:474390881": "颜色:白色【新款】",
  1231.  
    "1627207:799732754": "颜色:卡其色【新款】",
  1232.  
    "1627207:787450089": "颜色:浅灰色【新款】",
  1233.  
    "1627207:902410152": "颜色:浅粉色【新款】",
  1234.  
    "1627207:2660282734": "颜色:摩卡色【新款】",
  1235.  
    "1627207:22137857604": "颜色:暗夜灰【新款】"
  1236.  
    },
  1237.  
    "seller_info": {
  1238.  
    "nick": "梦建dlshow",
  1239.  
    "item_score": 4.64694,
  1240.  
    "score_p": 4.71206,
  1241.  
    "delivery_score": 4.7251,
  1242.  
    "shop_type": "",
  1243.  
    "user_num_id": "375350152",
  1244.  
    "sid": "67147218",
  1245.  
    "title": "",
  1246.  
    "zhuy": "https://shop67147218.taobao.com",
  1247.  
    "cert": null,
  1248.  
    "open_time": "",
  1249.  
    "credit_score": "tb-rank-cap:5",
  1250.  
    "shop_name": "极小衫工作室"
  1251.  
    },
  1252.  
    "tmall": false,
  1253.  
    "error": "",
  1254.  
    "location": "浙江金华",
  1255.  
    "data_from": "Ha",
  1256.  
    "has_discount": "true",
  1257.  
    "is_promotion": "true",
  1258.  
    "promo_type": null,
  1259.  
    "props_img": {
  1260.  
    "1627207:699580971": "//gd3.alicdn.com/imgextra/i2/375350152/O1CN01H4XinJ1Czey6MToNn_!!375350152.jpg",
  1261.  
    "1627207:380978865": "//gd1.alicdn.com/imgextra/i2/375350152/O1CN01sM0z7W1Czey2YDkIa_!!375350152.jpg",
  1262.  
    "1627207:382116126": "//gd1.alicdn.com/imgextra/i3/375350152/O1CN01w6EJJe1CzexzPAghY_!!375350152.jpg",
  1263.  
    "1627207:395460484": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01su0TZ51Czexx7bSnV_!!375350152.jpg",
  1264.  
    "1627207:28320": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01HqbMvX1Czey1petf7_!!375350152.jpg",
  1265.  
    "1627207:28341": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01PUBUiw1CzexyfeLx6_!!375350152.jpg",
  1266.  
    "1627207:645576665": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01OiITom1Czey8QKuYD_!!375350152.jpg",
  1267.  
    "1627207:4966037": "//gd3.alicdn.com/imgextra/i4/375350152/O1CN01PZW6sZ1Czey1jHfau_!!375350152.jpg",
  1268.  
    "1627207:6872191": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01xCRZUL1Czey1jFzdU_!!375350152.jpg",
  1269.  
    "1627207:415218951": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01DbJj421CzeyhKnnIG_!!375350152.jpg",
  1270.  
    "1627207:813822022": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN010VRMF31CzeyeGECLt_!!375350152.jpg",
  1271.  
    "1627207:474390881": "//gd4.alicdn.com/imgextra/i3/375350152/O1CN01KYREIF1Czeyk6tTEN_!!375350152.jpg",
  1272.  
    "1627207:799732754": "//gd2.alicdn.com/imgextra/i3/375350152/O1CN01p47Nai1CzeyXCIYsz_!!375350152.jpg",
  1273.  
    "1627207:787450089": "//gd3.alicdn.com/imgextra/i1/375350152/O1CN01SSYebN1Czeyp0tfOD_!!375350152.jpg",
  1274.  
    "1627207:902410152": "//gd2.alicdn.com/imgextra/i1/375350152/O1CN01JAdaTY1Czeyl1MWy1_!!375350152.jpg",
  1275.  
    "1627207:2660282734": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01DdCHQU1CzeydVRS55_!!375350152.jpg",
  1276.  
    "1627207:22137857604": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01Hqk9vC1CzeyiKLVnu_!!375350152.jpg"
  1277.  
    },
  1278.  
    "format_check": "ok",
  1279.  
    "desc_img": [
  1280.  
    "http://img.alicdn.com/imgextra/i3/375350152/O1CN01zyJOOB1CzeyrZKxNe_!!375350152.jpg",
  1281.  
    "http://img.alicdn.com/imgextra/i3/375350152/O1CN016W2sOm1Czeyn5Kn9u_!!375350152.jpg",
  1282.  
    "http://img.alicdn.com/imgextra/i1/375350152/O1CN01WIz5Cw1CzeymPbxv6_!!375350152.jpg",
  1283.  
    "http://img.alicdn.com/imgextra/i1/375350152/O1CN01E3y28F1CzeyqlkGVp_!!375350152.jpg",
  1284.  
    "http://img.alicdn.com/imgextra/i4/375350152/O1CN01ukeV3r1CzeygeCmst_!!375350152.jpg",
  1285.  
    "http://img.alicdn.com/imgextra/i2/375350152/O1CN012jV0Ls1CzeydVQqh9_!!375350152.jpg",
  1286.  
    "http://img.alicdn.com/imgextra/i2/375350152/O1CN01tQPo2J1Czeyirfi79_!!375350152.jpg",
  1287.  
    "http://img.alicdn.com/imgextra/i2/375350152/O1CN01hDjnXe1CzeypovPhL_!!375350152.jpg",
  1288.  
    "http://img.alicdn.com/imgextra/i2/375350152/O1CN019yfNPh1CzeypowLuk_!!375350152.jpg",
  1289.  
    "http://img.alicdn.com/imgextra/i3/375350152/O1CN01prWRW41CzeylqRjSX_!!375350152.jpg",
  1290.  
    "http://img.alicdn.com/imgextra/i4/375350152/O1CN01dMODOw1CzeyhKofMF_!!375350152.jpg",
  1291.  
    "http://img.alicdn.com/imgextra/i1/375350152/O1CN01xAguy11CzeynkcRxk_!!375350152.jpg",
  1292.  
    "http://img.alicdn.com/imgextra/i4/375350152/O1CN01LPk89g1CzeysfyL4S_!!375350152.jpg",
  1293.  
    "http://img.alicdn.com/imgextra/i1/375350152/O1CN01aUBs1A1Czeyn5NoGg_!!375350152.jpg",
  1294.  
    "http://img.alicdn.com/imgextra/i2/375350152/O1CN01Go40hH1CzeytTExZR_!!375350152.jpg",
  1295.  
    "http://img.alicdn.com/imgextra/i1/375350152/O1CN01E7kwGB1CzeyqlkKgo_!!375350152.jpg",
  1296.  
    "http://img.alicdn.com/imgextra/i3/375350152/O1CN01eAx1as1Czeyn5OHO4_!!375350152.jpg",
  1297.  
    "http://img.alicdn.com/imgextra/i1/375350152/O1CN01iBfqf91CzeymIUcMv_!!375350152.jpg",
  1298.  
    "http://img.alicdn.com/imgextra/i4/375350152/O1CN01xAjlAi1CzeyhKpwNS_!!375350152.jpg",
  1299.  
    "http://img.alicdn.com/imgextra/i3/375350152/O1CN01ohnl5Q1CzeyvXxUrD_!!375350152.jpg",
  1300.  
    "http://img.alicdn.com/imgextra/i1/375350152/O1CN01WP99Uh1CzeymITkKK_!!375350152.jpg"
  1301.  
    ],
  1302.  
    "shop_item": [],
  1303.  
    "relate_items": []
  1304.  
    },
  1305.  
    "error": "",
  1306.  
    "secache": "cfed62ef143562080faa2b44dbc82e14",
  1307.  
    "secache_time": 1663807760,
  1308.  
    "secache_date": "2022-09-22 08:49:20",
  1309.  
    "translate_status": "",
  1310.  
    "translate_time": 0,
  1311.  
    "language": {
  1312.  
    "default_lang": "cn",
  1313.  
    "current_lang": "cn"
  1314.  
    },
  1315.  
    "reason": "",
  1316.  
    "error_code": "0000",
  1317.  
    "cache": 0,
  1318.  
    "api_info": "today:138 max:10100 all[286=138 67 81];expires:2030-12-31",
  1319.  
    "execution_time": "1.735",
  1320.  
    "server_time": "Beijing/2022-09-22 08:49:20",
  1321.  
    "client_ip": "106.6.38.190",
  1322.  
    "call_args": {
  1323.  
    "num_iid": "678372678359",
  1324.  
    "is_promotion": "1"
  1325.  
    },
  1326.  
    "api_type": "taobao",
  1327.  
    "translate_language": "zh-CN",
  1328.  
    "translate_engine": "百度_api",
  1329.  
    "server_memory": "6.17MB",
  1330.  
    "request_id": "gw-3.632bb10ea8e5c",
  1331.  
    "last_id": "1232695689"
  1332.  
    }
学新通

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhgfcigg
系列文章
更多 icon
同类精品
更多 icon
继续加载