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

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

API测试工具

Curl

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

PHP

<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/taobao/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866&is_promotion=1";
$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));
?>

PHPSdk

<?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" =>"taobao",
	                "api_name" =>"item_get",
	                "api_params"=>array (
  'num_iid' => '520813250866',
  'is_promotion' => '1',
)
                )
            );
 var_dump($api_data);
?>

JAVA

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/taobao/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866&is_promotion=1";
		JSONObject json = getRequestFromUrl(url);
		System.out.println(json.toString());
	}

}

C#

//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/taobao/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866&is_promotion=1";
	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;
}

Python

# 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/taobao/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866&is_promotion=1"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)

示例详情

Request address:
https://api-gw.onebound.cn/taobao/item_get/?key=t&
&num_iid=678372678359&is_promotion=1&&lang=zh-CN&secret=
---------------------------------------
Result Object:
---------------------------------------
{
	"item": {
		"num_iid": "678372678359",
		"title": "买一送一!极小衫圆弧个性字体logo卫衣男美式复古高街潮牌长袖",
		"desc_short": "",
		"price": 69,
		"total_price": "",
		"suggestive_price": "",
		"orginal_price": 129,
		"nick": "梦建dlshow",
		"num": 200,
		"detail_url": "https://item.taobao.com/item.htm?id=678372678359",
		"pic_url": "https://gw.alicdn.com/imgextra/O1CN010VRMF31CzeyeGECLt_!!375350152.jpg",
		"brand": null,
		"brandId": "",
		"rootCatId": "",
		"cid": 50010159,
		"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\" />",
		"item_imgs": [
			{
				"url": "https://gw.alicdn.com/imgextra/O1CN010VRMF31CzeyeGECLt_!!375350152.jpg"
			},
			{
				"url": "//img.alicdn.com/bao/uploaded/i2/375350152/O1CN01DnfCYN1CzeydOpG9Y_!!375350152.jpg"
			},
			{
				"url": "//img.alicdn.com/bao/uploaded/i3/375350152/O1CN01B7eiKV1CzeydOnJbW_!!375350152.jpg"
			},
			{
				"url": "//img.alicdn.com/bao/uploaded/i3/375350152/O1CN01KTWISd1CzeygXVQgV_!!375350152.jpg"
			},
			{
				"url": "//img.alicdn.com/bao/uploaded/i4/375350152/O1CN01hZV8Fa1Czeyirdtrh_!!375350152.jpg"
			}
		],
		"item_weight": "",
		"post_fee": 0,
		"freight": "",
		"express_fee": "",
		"ems_fee": "",
		"shipping_to": "",
		"video": [],
		"sample_id": "",
		"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:颜色:暗夜灰【新款】",
		"prop_imgs": {
			"prop_img": [
				{
					"properties": "1627207:699580971",
					"url": "//gd3.alicdn.com/imgextra/i2/375350152/O1CN01H4XinJ1Czey6MToNn_!!375350152.jpg"
				},
				{
					"properties": "1627207:380978865",
					"url": "//gd1.alicdn.com/imgextra/i2/375350152/O1CN01sM0z7W1Czey2YDkIa_!!375350152.jpg"
				},
				{
					"properties": "1627207:382116126",
					"url": "//gd1.alicdn.com/imgextra/i3/375350152/O1CN01w6EJJe1CzexzPAghY_!!375350152.jpg"
				},
				{
					"properties": "1627207:395460484",
					"url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01su0TZ51Czexx7bSnV_!!375350152.jpg"
				},
				{
					"properties": "1627207:28320",
					"url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01HqbMvX1Czey1petf7_!!375350152.jpg"
				},
				{
					"properties": "1627207:28341",
					"url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01PUBUiw1CzexyfeLx6_!!375350152.jpg"
				},
				{
					"properties": "1627207:645576665",
					"url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01OiITom1Czey8QKuYD_!!375350152.jpg"
				},
				{
					"properties": "1627207:4966037",
					"url": "//gd3.alicdn.com/imgextra/i4/375350152/O1CN01PZW6sZ1Czey1jHfau_!!375350152.jpg"
				},
				{
					"properties": "1627207:6872191",
					"url": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01xCRZUL1Czey1jFzdU_!!375350152.jpg"
				},
				{
					"properties": "1627207:415218951",
					"url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01DbJj421CzeyhKnnIG_!!375350152.jpg"
				},
				{
					"properties": "1627207:813822022",
					"url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN010VRMF31CzeyeGECLt_!!375350152.jpg"
				},
				{
					"properties": "1627207:474390881",
					"url": "//gd4.alicdn.com/imgextra/i3/375350152/O1CN01KYREIF1Czeyk6tTEN_!!375350152.jpg"
				},
				{
					"properties": "1627207:799732754",
					"url": "//gd2.alicdn.com/imgextra/i3/375350152/O1CN01p47Nai1CzeyXCIYsz_!!375350152.jpg"
				},
				{
					"properties": "1627207:787450089",
					"url": "//gd3.alicdn.com/imgextra/i1/375350152/O1CN01SSYebN1Czeyp0tfOD_!!375350152.jpg"
				},
				{
					"properties": "1627207:902410152",
					"url": "//gd2.alicdn.com/imgextra/i1/375350152/O1CN01JAdaTY1Czeyl1MWy1_!!375350152.jpg"
				},
				{
					"properties": "1627207:2660282734",
					"url": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01DdCHQU1CzeydVRS55_!!375350152.jpg"
				},
				{
					"properties": "1627207:22137857604",
					"url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01Hqk9vC1CzeyiKLVnu_!!375350152.jpg"
				}
			]
		},
		"props_imgs": {
			"prop_img": [
				{
					"properties": "1627207:699580971",
					"url": "//gd3.alicdn.com/imgextra/i2/375350152/O1CN01H4XinJ1Czey6MToNn_!!375350152.jpg"
				},
				{
					"properties": "1627207:380978865",
					"url": "//gd1.alicdn.com/imgextra/i2/375350152/O1CN01sM0z7W1Czey2YDkIa_!!375350152.jpg"
				},
				{
					"properties": "1627207:382116126",
					"url": "//gd1.alicdn.com/imgextra/i3/375350152/O1CN01w6EJJe1CzexzPAghY_!!375350152.jpg"
				},
				{
					"properties": "1627207:395460484",
					"url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01su0TZ51Czexx7bSnV_!!375350152.jpg"
				},
				{
					"properties": "1627207:28320",
					"url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01HqbMvX1Czey1petf7_!!375350152.jpg"
				},
				{
					"properties": "1627207:28341",
					"url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01PUBUiw1CzexyfeLx6_!!375350152.jpg"
				},
				{
					"properties": "1627207:645576665",
					"url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01OiITom1Czey8QKuYD_!!375350152.jpg"
				},
				{
					"properties": "1627207:4966037",
					"url": "//gd3.alicdn.com/imgextra/i4/375350152/O1CN01PZW6sZ1Czey1jHfau_!!375350152.jpg"
				},
				{
					"properties": "1627207:6872191",
					"url": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01xCRZUL1Czey1jFzdU_!!375350152.jpg"
				},
				{
					"properties": "1627207:415218951",
					"url": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01DbJj421CzeyhKnnIG_!!375350152.jpg"
				},
				{
					"properties": "1627207:813822022",
					"url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN010VRMF31CzeyeGECLt_!!375350152.jpg"
				},
				{
					"properties": "1627207:474390881",
					"url": "//gd4.alicdn.com/imgextra/i3/375350152/O1CN01KYREIF1Czeyk6tTEN_!!375350152.jpg"
				},
				{
					"properties": "1627207:799732754",
					"url": "//gd2.alicdn.com/imgextra/i3/375350152/O1CN01p47Nai1CzeyXCIYsz_!!375350152.jpg"
				},
				{
					"properties": "1627207:787450089",
					"url": "//gd3.alicdn.com/imgextra/i1/375350152/O1CN01SSYebN1Czeyp0tfOD_!!375350152.jpg"
				},
				{
					"properties": "1627207:902410152",
					"url": "//gd2.alicdn.com/imgextra/i1/375350152/O1CN01JAdaTY1Czeyl1MWy1_!!375350152.jpg"
				},
				{
					"properties": "1627207:2660282734",
					"url": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01DdCHQU1CzeydVRS55_!!375350152.jpg"
				},
				{
					"properties": "1627207:22137857604",
					"url": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01Hqk9vC1CzeyiKLVnu_!!375350152.jpg"
				}
			]
		},
		"property_alias": "",
		"props": [
			{
				"name": "品牌",
				"value": "004"
			},
			{
				"name": "尺码",
				"value": "S M L XL 2XL 3XL"
			},
			{
				"name": "面料分类",
				"value": "棉"
			},
			{
				"name": "图案",
				"value": "字母/数字/文字"
			},
			{
				"name": "领型",
				"value": "圆领"
			},
			{
				"name": "颜色",
				"value": "白色 黑色 白色【加绒款】 黑色【加绒款】 酒红色【加绒款】 浅灰色【加绒款】 暗夜灰 牛仔蓝 豆绿色 黑色【新款】 藏青色【新款】 白色【新款】 卡其色【新款】 浅灰色【新款】 浅粉色【新款】 摩卡色【新款】 暗夜灰【新款】"
			},
			{
				"name": "袖型",
				"value": "常规"
			},
			{
				"name": "货号",
				"value": "0870"
			},
			{
				"name": "细分风格",
				"value": "潮"
			},
			{
				"name": "基础风格",
				"value": "青春流行"
			},
			{
				"name": "适用季节",
				"value": "秋季"
			},
			{
				"name": "上市年份季节",
				"value": "2022年秋季"
			},
			{
				"name": "厚薄",
				"value": "常规"
			},
			{
				"name": "适用场景",
				"value": "休闲"
			},
			{
				"name": "版型",
				"value": "宽松型"
			},
			{
				"name": "服装款式细节",
				"value": "印花"
			},
			{
				"name": "服饰工艺",
				"value": "免烫处理"
			},
			{
				"name": "适用对象",
				"value": "青少年"
			},
			{
				"name": "款式",
				"value": "套头"
			},
			{
				"name": "面料功能",
				"value": "抗菌"
			},
			{
				"name": "上市时间",
				"value": "2022"
			},
			{
				"name": "材质成分",
				"value": "棉100%"
			}
		],
		"total_sold": "2462",
		"skus": {
			"sku": [
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:6145171;1627207:699580971",
					"properties_name": "20509:6145171:尺码:2XL;1627207:699580971:颜色:白色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536435"
				},
				{
					"price": 149,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:115781;1627207:699580971",
					"properties_name": "20509:115781:尺码:3XL;1627207:699580971:颜色:白色【加绒款】",
					"quantity": 0,
					"sku_id": "4886479597911"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28316;1627207:699580971",
					"properties_name": "20509:28316:尺码:L;1627207:699580971:颜色:白色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536433"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28315;1627207:699580971",
					"properties_name": "20509:28315:尺码:M;1627207:699580971:颜色:白色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536432"
				},
				{
					"price": 149,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28314;1627207:699580971",
					"properties_name": "20509:28314:尺码:S;1627207:699580971:颜色:白色【加绒款】",
					"quantity": 0,
					"sku_id": "4865080536431"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28317;1627207:699580971",
					"properties_name": "20509:28317:尺码:XL;1627207:699580971:颜色:白色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536434"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28316;1627207:380978865",
					"properties_name": "20509:28316:尺码:L;1627207:380978865:颜色:黑色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536438"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:6145171;1627207:380978865",
					"properties_name": "20509:6145171:尺码:2XL;1627207:380978865:颜色:黑色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536440"
				},
				{
					"price": 149,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:115781;1627207:380978865",
					"properties_name": "20509:115781:尺码:3XL;1627207:380978865:颜色:黑色【加绒款】",
					"quantity": 0,
					"sku_id": "4886479597905"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28315;1627207:380978865",
					"properties_name": "20509:28315:尺码:M;1627207:380978865:颜色:黑色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536437"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28317;1627207:380978865",
					"properties_name": "20509:28317:尺码:XL;1627207:380978865:颜色:黑色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536439"
				},
				{
					"price": 149,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28314;1627207:380978865",
					"properties_name": "20509:28314:尺码:S;1627207:380978865:颜色:黑色【加绒款】",
					"quantity": 0,
					"sku_id": "4865080536436"
				},
				{
					"price": 149,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28314;1627207:382116126",
					"properties_name": "20509:28314:尺码:S;1627207:382116126:颜色:酒红色【加绒款】",
					"quantity": 0,
					"sku_id": "4865080536441"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28317;1627207:382116126",
					"properties_name": "20509:28317:尺码:XL;1627207:382116126:颜色:酒红色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536444"
				},
				{
					"price": 149,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:115781;1627207:382116126",
					"properties_name": "20509:115781:尺码:3XL;1627207:382116126:颜色:酒红色【加绒款】",
					"quantity": 0,
					"sku_id": "4886479597906"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:6145171;1627207:382116126",
					"properties_name": "20509:6145171:尺码:2XL;1627207:382116126:颜色:酒红色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536445"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28315;1627207:382116126",
					"properties_name": "20509:28315:尺码:M;1627207:382116126:颜色:酒红色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536442"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28316;1627207:382116126",
					"properties_name": "20509:28316:尺码:L;1627207:382116126:颜色:酒红色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536443"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28315;1627207:395460484",
					"properties_name": "20509:28315:尺码:M;1627207:395460484:颜色:浅灰色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536452"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28316;1627207:395460484",
					"properties_name": "20509:28316:尺码:L;1627207:395460484:颜色:浅灰色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536453"
				},
				{
					"price": 149,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28314;1627207:395460484",
					"properties_name": "20509:28314:尺码:S;1627207:395460484:颜色:浅灰色【加绒款】",
					"quantity": 0,
					"sku_id": "4865080536451"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:28317;1627207:395460484",
					"properties_name": "20509:28317:尺码:XL;1627207:395460484:颜色:浅灰色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536454"
				},
				{
					"price": 89,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:6145171;1627207:395460484",
					"properties_name": "20509:6145171:尺码:2XL;1627207:395460484:颜色:浅灰色【加绒款】",
					"quantity": 200,
					"sku_id": "4865080536455"
				},
				{
					"price": 149,
					"total_price": 0,
					"orginal_price": 149,
					"properties": "20509:115781;1627207:395460484",
					"properties_name": "20509:115781:尺码:3XL;1627207:395460484:颜色:浅灰色【加绒款】",
					"quantity": 0,
					"sku_id": "4886479597907"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28316;1627207:28320",
					"properties_name": "20509:28316:尺码:L;1627207:28320:颜色:白色",
					"quantity": 0,
					"sku_id": "4865080536458"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:6145171;1627207:28320",
					"properties_name": "20509:6145171:尺码:2XL;1627207:28320:颜色:白色",
					"quantity": 43,
					"sku_id": "4865080536460"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28317;1627207:28320",
					"properties_name": "20509:28317:尺码:XL;1627207:28320:颜色:白色",
					"quantity": 0,
					"sku_id": "4865080536459"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28314;1627207:28320",
					"properties_name": "20509:28314:尺码:S;1627207:28320:颜色:白色",
					"quantity": 0,
					"sku_id": "4865080536456"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:115781;1627207:28320",
					"properties_name": "20509:115781:尺码:3XL;1627207:28320:颜色:白色",
					"quantity": 0,
					"sku_id": "4886479597901"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28315;1627207:28320",
					"properties_name": "20509:28315:尺码:M;1627207:28320:颜色:白色",
					"quantity": 0,
					"sku_id": "4865080536457"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28314;1627207:28341",
					"properties_name": "20509:28314:尺码:S;1627207:28341:颜色:黑色",
					"quantity": 200,
					"sku_id": "4865080536461"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:6145171;1627207:28341",
					"properties_name": "20509:6145171:尺码:2XL;1627207:28341:颜色:黑色",
					"quantity": 200,
					"sku_id": "4865080536465"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28317;1627207:28341",
					"properties_name": "20509:28317:尺码:XL;1627207:28341:颜色:黑色",
					"quantity": 200,
					"sku_id": "4865080536464"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:115781;1627207:28341",
					"properties_name": "20509:115781:尺码:3XL;1627207:28341:颜色:黑色",
					"quantity": 0,
					"sku_id": "4886479597904"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28315;1627207:28341",
					"properties_name": "20509:28315:尺码:M;1627207:28341:颜色:黑色",
					"quantity": 200,
					"sku_id": "4865080536462"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28316;1627207:28341",
					"properties_name": "20509:28316:尺码:L;1627207:28341:颜色:黑色",
					"quantity": 200,
					"sku_id": "4865080536463"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28316;1627207:645576665",
					"properties_name": "20509:28316:尺码:L;1627207:645576665:颜色:暗夜灰",
					"quantity": 200,
					"sku_id": "4865080536473"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28317;1627207:645576665",
					"properties_name": "20509:28317:尺码:XL;1627207:645576665:颜色:暗夜灰",
					"quantity": 200,
					"sku_id": "4865080536474"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28315;1627207:645576665",
					"properties_name": "20509:28315:尺码:M;1627207:645576665:颜色:暗夜灰",
					"quantity": 200,
					"sku_id": "4865080536472"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28314;1627207:645576665",
					"properties_name": "20509:28314:尺码:S;1627207:645576665:颜色:暗夜灰",
					"quantity": 200,
					"sku_id": "4865080536471"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:6145171;1627207:645576665",
					"properties_name": "20509:6145171:尺码:2XL;1627207:645576665:颜色:暗夜灰",
					"quantity": 200,
					"sku_id": "4865080536475"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:115781;1627207:645576665",
					"properties_name": "20509:115781:尺码:3XL;1627207:645576665:颜色:暗夜灰",
					"quantity": 0,
					"sku_id": "4886479597909"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28315;1627207:4966037",
					"properties_name": "20509:28315:尺码:M;1627207:4966037:颜色:牛仔蓝",
					"quantity": 200,
					"sku_id": "4865080536487"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28317;1627207:4966037",
					"properties_name": "20509:28317:尺码:XL;1627207:4966037:颜色:牛仔蓝",
					"quantity": 200,
					"sku_id": "4865080536489"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28314;1627207:4966037",
					"properties_name": "20509:28314:尺码:S;1627207:4966037:颜色:牛仔蓝",
					"quantity": 200,
					"sku_id": "4865080536486"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:6145171;1627207:4966037",
					"properties_name": "20509:6145171:尺码:2XL;1627207:4966037:颜色:牛仔蓝",
					"quantity": 200,
					"sku_id": "4865080536490"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:115781;1627207:4966037",
					"properties_name": "20509:115781:尺码:3XL;1627207:4966037:颜色:牛仔蓝",
					"quantity": 0,
					"sku_id": "4886479597908"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28316;1627207:4966037",
					"properties_name": "20509:28316:尺码:L;1627207:4966037:颜色:牛仔蓝",
					"quantity": 200,
					"sku_id": "4865080536488"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28315;1627207:6872191",
					"properties_name": "20509:28315:尺码:M;1627207:6872191:颜色:豆绿色",
					"quantity": 0,
					"sku_id": "4865080536502"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28317;1627207:6872191",
					"properties_name": "20509:28317:尺码:XL;1627207:6872191:颜色:豆绿色",
					"quantity": 200,
					"sku_id": "4865080536504"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:115781;1627207:6872191",
					"properties_name": "20509:115781:尺码:3XL;1627207:6872191:颜色:豆绿色",
					"quantity": 0,
					"sku_id": "4886479597910"
				},
				{
					"price": 129,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28314;1627207:6872191",
					"properties_name": "20509:28314:尺码:S;1627207:6872191:颜色:豆绿色",
					"quantity": 0,
					"sku_id": "4865080536501"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:28316;1627207:6872191",
					"properties_name": "20509:28316:尺码:L;1627207:6872191:颜色:豆绿色",
					"quantity": 200,
					"sku_id": "4865080536503"
				},
				{
					"price": 69,
					"total_price": 0,
					"orginal_price": 129,
					"properties": "20509:6145171;1627207:6872191",
					"properties_name": "20509:6145171:尺码:2XL;1627207:6872191:颜色:豆绿色",
					"quantity": 200,
					"sku_id": "4865080536505"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28317;1627207:415218951",
					"properties_name": "20509:28317:尺码:XL;1627207:415218951:颜色:黑色【新款】",
					"quantity": 200,
					"sku_id": "4887511853504"
				},
				{
					"price": 139,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28314;1627207:415218951",
					"properties_name": "20509:28314:尺码:S;1627207:415218951:颜色:黑色【新款】",
					"quantity": 0,
					"sku_id": "4887511853495"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28315;1627207:415218951",
					"properties_name": "20509:28315:尺码:M;1627207:415218951:颜色:黑色【新款】",
					"quantity": 200,
					"sku_id": "4887511853498"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28316;1627207:415218951",
					"properties_name": "20509:28316:尺码:L;1627207:415218951:颜色:黑色【新款】",
					"quantity": 200,
					"sku_id": "4887511853501"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:6145171;1627207:415218951",
					"properties_name": "20509:6145171:尺码:2XL;1627207:415218951:颜色:黑色【新款】",
					"quantity": 200,
					"sku_id": "4887511853507"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:115781;1627207:415218951",
					"properties_name": "20509:115781:尺码:3XL;1627207:415218951:颜色:黑色【新款】",
					"quantity": 200,
					"sku_id": "4887511853492"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:6145171;1627207:813822022",
					"properties_name": "20509:6145171:尺码:2XL;1627207:813822022:颜色:藏青色【新款】",
					"quantity": 200,
					"sku_id": "4886479597930"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:115781;1627207:813822022",
					"properties_name": "20509:115781:尺码:3XL;1627207:813822022:颜色:藏青色【新款】",
					"quantity": 200,
					"sku_id": "4886479597899"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28317;1627207:813822022",
					"properties_name": "20509:28317:尺码:XL;1627207:813822022:颜色:藏青色【新款】",
					"quantity": 200,
					"sku_id": "4886479597926"
				},
				{
					"price": 139,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28314;1627207:813822022",
					"properties_name": "20509:28314:尺码:S;1627207:813822022:颜色:藏青色【新款】",
					"quantity": 0,
					"sku_id": "4886479597914"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28316;1627207:813822022",
					"properties_name": "20509:28316:尺码:L;1627207:813822022:颜色:藏青色【新款】",
					"quantity": 200,
					"sku_id": "4886479597922"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28315;1627207:813822022",
					"properties_name": "20509:28315:尺码:M;1627207:813822022:颜色:藏青色【新款】",
					"quantity": 200,
					"sku_id": "4886479597918"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28317;1627207:474390881",
					"properties_name": "20509:28317:尺码:XL;1627207:474390881:颜色:白色【新款】",
					"quantity": 200,
					"sku_id": "4882262308411"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28316;1627207:474390881",
					"properties_name": "20509:28316:尺码:L;1627207:474390881:颜色:白色【新款】",
					"quantity": 200,
					"sku_id": "4882262308410"
				},
				{
					"price": 139,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28314;1627207:474390881",
					"properties_name": "20509:28314:尺码:S;1627207:474390881:颜色:白色【新款】",
					"quantity": 0,
					"sku_id": "4882262308408"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28315;1627207:474390881",
					"properties_name": "20509:28315:尺码:M;1627207:474390881:颜色:白色【新款】",
					"quantity": 200,
					"sku_id": "4882262308409"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:6145171;1627207:474390881",
					"properties_name": "20509:6145171:尺码:2XL;1627207:474390881:颜色:白色【新款】",
					"quantity": 200,
					"sku_id": "4882262308412"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:115781;1627207:474390881",
					"properties_name": "20509:115781:尺码:3XL;1627207:474390881:颜色:白色【新款】",
					"quantity": 200,
					"sku_id": "4882262308407"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28315;1627207:799732754",
					"properties_name": "20509:28315:尺码:M;1627207:799732754:颜色:卡其色【新款】",
					"quantity": 200,
					"sku_id": "4887511853499"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:6145171;1627207:799732754",
					"properties_name": "20509:6145171:尺码:2XL;1627207:799732754:颜色:卡其色【新款】",
					"quantity": 200,
					"sku_id": "4887511853508"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28316;1627207:799732754",
					"properties_name": "20509:28316:尺码:L;1627207:799732754:颜色:卡其色【新款】",
					"quantity": 200,
					"sku_id": "4887511853502"
				},
				{
					"price": 139,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28314;1627207:799732754",
					"properties_name": "20509:28314:尺码:S;1627207:799732754:颜色:卡其色【新款】",
					"quantity": 0,
					"sku_id": "4887511853496"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28317;1627207:799732754",
					"properties_name": "20509:28317:尺码:XL;1627207:799732754:颜色:卡其色【新款】",
					"quantity": 200,
					"sku_id": "4887511853505"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:115781;1627207:799732754",
					"properties_name": "20509:115781:尺码:3XL;1627207:799732754:颜色:卡其色【新款】",
					"quantity": 200,
					"sku_id": "4887511853493"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28317;1627207:787450089",
					"properties_name": "20509:28317:尺码:XL;1627207:787450089:颜色:浅灰色【新款】",
					"quantity": 200,
					"sku_id": "4886479597925"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:6145171;1627207:787450089",
					"properties_name": "20509:6145171:尺码:2XL;1627207:787450089:颜色:浅灰色【新款】",
					"quantity": 200,
					"sku_id": "4886479597929"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:115781;1627207:787450089",
					"properties_name": "20509:115781:尺码:3XL;1627207:787450089:颜色:浅灰色【新款】",
					"quantity": 200,
					"sku_id": "4886479597898"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28315;1627207:787450089",
					"properties_name": "20509:28315:尺码:M;1627207:787450089:颜色:浅灰色【新款】",
					"quantity": 200,
					"sku_id": "4886479597917"
				},
				{
					"price": 139,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28314;1627207:787450089",
					"properties_name": "20509:28314:尺码:S;1627207:787450089:颜色:浅灰色【新款】",
					"quantity": 0,
					"sku_id": "4886479597913"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28316;1627207:787450089",
					"properties_name": "20509:28316:尺码:L;1627207:787450089:颜色:浅灰色【新款】",
					"quantity": 200,
					"sku_id": "4886479597921"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:6145171;1627207:902410152",
					"properties_name": "20509:6145171:尺码:2XL;1627207:902410152:颜色:浅粉色【新款】",
					"quantity": 200,
					"sku_id": "4886479597931"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:115781;1627207:902410152",
					"properties_name": "20509:115781:尺码:3XL;1627207:902410152:颜色:浅粉色【新款】",
					"quantity": 200,
					"sku_id": "4886479597900"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28316;1627207:902410152",
					"properties_name": "20509:28316:尺码:L;1627207:902410152:颜色:浅粉色【新款】",
					"quantity": 200,
					"sku_id": "4886479597923"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28317;1627207:902410152",
					"properties_name": "20509:28317:尺码:XL;1627207:902410152:颜色:浅粉色【新款】",
					"quantity": 200,
					"sku_id": "4886479597927"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28315;1627207:902410152",
					"properties_name": "20509:28315:尺码:M;1627207:902410152:颜色:浅粉色【新款】",
					"quantity": 200,
					"sku_id": "4886479597919"
				},
				{
					"price": 139,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28314;1627207:902410152",
					"properties_name": "20509:28314:尺码:S;1627207:902410152:颜色:浅粉色【新款】",
					"quantity": 0,
					"sku_id": "4886479597915"
				},
				{
					"price": 139,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28314;1627207:2660282734",
					"properties_name": "20509:28314:尺码:S;1627207:2660282734:颜色:摩卡色【新款】",
					"quantity": 0,
					"sku_id": "4886479597912"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28315;1627207:2660282734",
					"properties_name": "20509:28315:尺码:M;1627207:2660282734:颜色:摩卡色【新款】",
					"quantity": 200,
					"sku_id": "4886479597916"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28316;1627207:2660282734",
					"properties_name": "20509:28316:尺码:L;1627207:2660282734:颜色:摩卡色【新款】",
					"quantity": 200,
					"sku_id": "4886479597920"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:115781;1627207:2660282734",
					"properties_name": "20509:115781:尺码:3XL;1627207:2660282734:颜色:摩卡色【新款】",
					"quantity": 200,
					"sku_id": "4886479597897"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:6145171;1627207:2660282734",
					"properties_name": "20509:6145171:尺码:2XL;1627207:2660282734:颜色:摩卡色【新款】",
					"quantity": 200,
					"sku_id": "4886479597928"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28317;1627207:2660282734",
					"properties_name": "20509:28317:尺码:XL;1627207:2660282734:颜色:摩卡色【新款】",
					"quantity": 200,
					"sku_id": "4886479597924"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28317;1627207:22137857604",
					"properties_name": "20509:28317:尺码:XL;1627207:22137857604:颜色:暗夜灰【新款】",
					"quantity": 200,
					"sku_id": "4887511853506"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28316;1627207:22137857604",
					"properties_name": "20509:28316:尺码:L;1627207:22137857604:颜色:暗夜灰【新款】",
					"quantity": 200,
					"sku_id": "4887511853503"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28315;1627207:22137857604",
					"properties_name": "20509:28315:尺码:M;1627207:22137857604:颜色:暗夜灰【新款】",
					"quantity": 200,
					"sku_id": "4887511853500"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:6145171;1627207:22137857604",
					"properties_name": "20509:6145171:尺码:2XL;1627207:22137857604:颜色:暗夜灰【新款】",
					"quantity": 200,
					"sku_id": "4887511853509"
				},
				{
					"price": 79,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:115781;1627207:22137857604",
					"properties_name": "20509:115781:尺码:3XL;1627207:22137857604:颜色:暗夜灰【新款】",
					"quantity": 200,
					"sku_id": "4887511853494"
				},
				{
					"price": 139,
					"total_price": 0,
					"orginal_price": 139,
					"properties": "20509:28314;1627207:22137857604",
					"properties_name": "20509:28314:尺码:S;1627207:22137857604:颜色:暗夜灰【新款】",
					"quantity": 0,
					"sku_id": "4887511853497"
				}
			]
		},
		"seller_id": "375350152",
		"sales": 2462,
		"shop_id": "67147218",
		"props_list": {
			"20509:28314": "尺码:S",
			"20509:28315": "尺码:M",
			"20509:28316": "尺码:L",
			"20509:28317": "尺码:XL",
			"20509:6145171": "尺码:2XL",
			"20509:115781": "尺码:3XL",
			"1627207:699580971": "颜色:白色【加绒款】",
			"1627207:380978865": "颜色:黑色【加绒款】",
			"1627207:382116126": "颜色:酒红色【加绒款】",
			"1627207:395460484": "颜色:浅灰色【加绒款】",
			"1627207:28320": "颜色:白色",
			"1627207:28341": "颜色:黑色",
			"1627207:645576665": "颜色:暗夜灰",
			"1627207:4966037": "颜色:牛仔蓝",
			"1627207:6872191": "颜色:豆绿色",
			"1627207:415218951": "颜色:黑色【新款】",
			"1627207:813822022": "颜色:藏青色【新款】",
			"1627207:474390881": "颜色:白色【新款】",
			"1627207:799732754": "颜色:卡其色【新款】",
			"1627207:787450089": "颜色:浅灰色【新款】",
			"1627207:902410152": "颜色:浅粉色【新款】",
			"1627207:2660282734": "颜色:摩卡色【新款】",
			"1627207:22137857604": "颜色:暗夜灰【新款】"
		},
		"seller_info": {
			"nick": "梦建dlshow",
			"item_score": 4.64694,
			"score_p": 4.71206,
			"delivery_score": 4.7251,
			"shop_type": "",
			"user_num_id": "375350152",
			"sid": "67147218",
			"title": "",
			"zhuy": "https://shop67147218.taobao.com",
			"cert": null,
			"open_time": "",
			"credit_score": "tb-rank-cap:5",
			"shop_name": "极小衫工作室"
		},
		"tmall": false,
		"error": "",
		"location": "浙江金华",
		"data_from": "Ha",
		"has_discount": "true",
		"is_promotion": "true",
		"promo_type": null,
		"props_img": {
			"1627207:699580971": "//gd3.alicdn.com/imgextra/i2/375350152/O1CN01H4XinJ1Czey6MToNn_!!375350152.jpg",
			"1627207:380978865": "//gd1.alicdn.com/imgextra/i2/375350152/O1CN01sM0z7W1Czey2YDkIa_!!375350152.jpg",
			"1627207:382116126": "//gd1.alicdn.com/imgextra/i3/375350152/O1CN01w6EJJe1CzexzPAghY_!!375350152.jpg",
			"1627207:395460484": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01su0TZ51Czexx7bSnV_!!375350152.jpg",
			"1627207:28320": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01HqbMvX1Czey1petf7_!!375350152.jpg",
			"1627207:28341": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01PUBUiw1CzexyfeLx6_!!375350152.jpg",
			"1627207:645576665": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01OiITom1Czey8QKuYD_!!375350152.jpg",
			"1627207:4966037": "//gd3.alicdn.com/imgextra/i4/375350152/O1CN01PZW6sZ1Czey1jHfau_!!375350152.jpg",
			"1627207:6872191": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01xCRZUL1Czey1jFzdU_!!375350152.jpg",
			"1627207:415218951": "//gd3.alicdn.com/imgextra/i3/375350152/O1CN01DbJj421CzeyhKnnIG_!!375350152.jpg",
			"1627207:813822022": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN010VRMF31CzeyeGECLt_!!375350152.jpg",
			"1627207:474390881": "//gd4.alicdn.com/imgextra/i3/375350152/O1CN01KYREIF1Czeyk6tTEN_!!375350152.jpg",
			"1627207:799732754": "//gd2.alicdn.com/imgextra/i3/375350152/O1CN01p47Nai1CzeyXCIYsz_!!375350152.jpg",
			"1627207:787450089": "//gd3.alicdn.com/imgextra/i1/375350152/O1CN01SSYebN1Czeyp0tfOD_!!375350152.jpg",
			"1627207:902410152": "//gd2.alicdn.com/imgextra/i1/375350152/O1CN01JAdaTY1Czeyl1MWy1_!!375350152.jpg",
			"1627207:2660282734": "//gd1.alicdn.com/imgextra/i4/375350152/O1CN01DdCHQU1CzeydVRS55_!!375350152.jpg",
			"1627207:22137857604": "//gd4.alicdn.com/imgextra/i2/375350152/O1CN01Hqk9vC1CzeyiKLVnu_!!375350152.jpg"
		},
		"format_check": "ok",
		"desc_img": [
			"http://img.alicdn.com/imgextra/i3/375350152/O1CN01zyJOOB1CzeyrZKxNe_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i3/375350152/O1CN016W2sOm1Czeyn5Kn9u_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i1/375350152/O1CN01WIz5Cw1CzeymPbxv6_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i1/375350152/O1CN01E3y28F1CzeyqlkGVp_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i4/375350152/O1CN01ukeV3r1CzeygeCmst_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i2/375350152/O1CN012jV0Ls1CzeydVQqh9_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i2/375350152/O1CN01tQPo2J1Czeyirfi79_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i2/375350152/O1CN01hDjnXe1CzeypovPhL_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i2/375350152/O1CN019yfNPh1CzeypowLuk_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i3/375350152/O1CN01prWRW41CzeylqRjSX_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i4/375350152/O1CN01dMODOw1CzeyhKofMF_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i1/375350152/O1CN01xAguy11CzeynkcRxk_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i4/375350152/O1CN01LPk89g1CzeysfyL4S_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i1/375350152/O1CN01aUBs1A1Czeyn5NoGg_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i2/375350152/O1CN01Go40hH1CzeytTExZR_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i1/375350152/O1CN01E7kwGB1CzeyqlkKgo_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i3/375350152/O1CN01eAx1as1Czeyn5OHO4_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i1/375350152/O1CN01iBfqf91CzeymIUcMv_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i4/375350152/O1CN01xAjlAi1CzeyhKpwNS_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i3/375350152/O1CN01ohnl5Q1CzeyvXxUrD_!!375350152.jpg",
			"http://img.alicdn.com/imgextra/i1/375350152/O1CN01WP99Uh1CzeymITkKK_!!375350152.jpg"
		],
		"shop_item": [],
		"relate_items": []
	},
	"error": "",
	"secache": "cfed62ef143562080faa2b44dbc82e14",
	"secache_time": 1663807760,
	"secache_date": "2022-09-22 08:49:20",
	"translate_status": "",
	"translate_time": 0,
	"language": {
		"default_lang": "cn",
		"current_lang": "cn"
	},
	"reason": "",
	"error_code": "0000",
	"cache": 0,
	"api_info": "today:138 max:10100 all[286=138+67+81];expires:2030-12-31",
	"execution_time": "1.735",
	"server_time": "Beijing/2022-09-22 08:49:20",
	"client_ip": "106.6.38.190",
	"call_args": {
		"num_iid": "678372678359",
		"is_promotion": "1"
	},
	"api_type": "taobao",
	"translate_language": "zh-CN",
	"translate_engine": "baidu_api",
	"server_memory": "6.17MB",
	"request_id": "gw-3.632bb10ea8e5c",
	"last_id": "1232695689"
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值