簡要描述
請求url
https://www.商城域名.com/index.php?s=/api/goods/recommended
請求方式
是否需授權登錄
請求header
參數名 |
類型 |
是否必須 |
示例值 |
說明 |
storeId |
int |
必填 |
10001 |
商城ID |
platform |
string |
必填 |
H5 |
當前請求的客戶端(APP、小程序、H5等) |
Access-Token |
string |
選填 |
- |
當前登錄用戶的 Token |
返回示例
{
"status": 200,
"message": "success",
"data": {
"goodsList": [
{
"goods_id": 10025,
"goods_name": "小米6X 全網通 4GB+32GB 流沙金 移動聯通電信4G手機 雙卡雙待 智能手機",
"selling_point": "",
"goods_image": "db7082c6af34ece0f1c94e6ef8a06ce4.jpg",
"goods_price_min": "0.98",
"goods_price_max": "0.98",
"line_price_min": "11.00",
"line_price_max": "11.00",
"goods_sales": 24
},
{
"goods_id": 10020,
"goods_name": "耐克 男子 NIKE AIR FORCE 1'07 運動鞋",
"selling_point": "",
"goods_image": "b72822760ccc4bb892cc658b33af939e.jpg",
"goods_price_min": "587.02",
"goods_price_max": "587.02",
"line_price_min": "999.00",
"line_price_max": "999.00",
"goods_sales": 40
}
]
}
}
返回參數
參數名 |
類型 |
示例值 |
說明 |
status |
int |
200 |
請求狀態(200:請求成功;500:請求錯誤/失敗) |
message |
string |
success |
請求結果的信息,默認為 success |
data |
object |
- |
返回的業務數據 |
data 參數
參數名 |
類型 |
示例值 |
說明 |
goodsList |
array |
- |
商品列表數據 |
data.goodsList 參數
參數名 |
類型 |
示例值 |
說明 |
goods_id |
int |
10025 |
商品ID |
goods_name |
string |
小米6X 全網通 4GB+32GB 流沙金 移動聯通電信4G手機 雙卡雙待 智能手機 |
商品標題/名稱 |
selling_point |
string |
- |
商品賣點 |
goods_image |
string |
db7082c6af34ece0f1c94e6ef8a06ce4.jpg |
商品主圖URL |
goods_price_min |
string |
0.98 |
商品價格 (最低) |
goods_price_max |
string |
0.98 |
商品價格 (最高) |
line_price_min |
string |
11.00 |
劃線價格 (最低) |
line_price_max |
string |
11.00 |
劃線價格 (最高) |
goods_sales |
int |
24 |
顯示銷量 (初始銷量 + 實際銷量) |