请求方式:GET
注:请求参数须区分大小写
$data = [
'appKey' => "xxxxxxxxxxxx",
'version' => "v1.2.1",
...
];
$host = "https://openapi.dataoke.com/open-api/vip/goods-list-v2-with-oauth";
$url = $host . '?' . http_build_query($data);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
curl_setopt($ch, CURLOPT_HEADER, 0);
$output = curl_exec($ch);
$a = curl_error($ch);
if(!empty($a)){
return json_encode(array('code'=>10003, 'msg'=>$a));
}
curl_close($ch);
return $output;
SDK调用示例
$client = new GoodsListV2WithOauth();
$client->setAppKey("xxxxxxxxx");
$client->setAppSecret("xxxxxxxxxxxxxxxxxxxxxxxxx");
$client->setVersion("v1.2.1");
$res = $client->setParams([])->request();
{
"cache": false,
"code": 0,
"data": {
"goodsInfoList": [
{
"brandId": 3662181,
"brandLogoFull": "http://a.vpimg3.com/upload/brandcool/0/LOGO/16486354873430a49d/primary.png",
"brandName": "三只松鼠",
"brandStoreSn": "10012277",
"cat1stId": 384252,
"cat1stName": "食品饮料",
"cat2ndId": 384294,
"cat2ndName": "休闲零食",
"categoryId": 384590,
"categoryName": "肉干肉脯",
"commentsInfo": {
"comments": 377,
"goodCommentsShare": "97.00"
},
"commission": "2.16",
"commissionRate": "12",
"couponInfo": {
"activateBeginTime": 1655172000000,
"activateEndTime": 1655294400000,
"activedAmount": -1,
"buy": "10.00",
"couponName": "10元宅家日券",
"couponNo": "11199726",
"couponType": 5,
"fav": "10.00",
"totalAmount": 10000,
"useBeginTime": 1655172000000,
"useEndTime": 1655294400000
},
"cpsInfo": {
"1": "adp%3AC01V4mmj58rhjl1o%3A%3Amig_code%3A1213113%3Aac03164mmj580000p1n7xg06wocezcp9",
"2": "pages/productDetail/productDetail?brandId=3662181&goodsId=2164292716&tra_from=adp%3AC01V4mmj58rhjl1o%3A%3Amig_code%3A1213113%3Aac03164mmj580000p1n7xg06wocezcp9&chl_type=wxk"
},
"destUrl": "https://m.vip.com/product-3662181-2164292716.html",
"discount": "0.56",
"goodsId": "2164292716",
"goodsMainPicture": "https://a.vpimg3.com/upload/merchandise/pdcpos/1100002418/2020/0709/128/4d5855ba-4dc3-443d-a0b4-26ce64dd3e19.jpg",
"goodsName": "【去骨凤爪110g】卤味小零食熟食去骨脱骨鸡爪即食",
"goodsThumbUrl": "https://a.vpimg2.com/upload/merchandise/pdcpos/1100002418/2020/0709/128/4d5855ba-4dc3-443d-a0b4-26ce64dd3e19_750x750_50.jpg",
"haiTao": 0,
"isSubsidyActivityGoods": false,
"marketPrice": "50.00",
"prepayInfo": {
"isPrepay": 0
},
"saleStockStatus": 2,
"schemeEndTime": 1656604799000,
"schemeStartTime": 1653990609000,
"sellTimeFrom": 1539677728000,
"sellTimeTo": 2145888000000,
"sn": "COLOR均色",
"sourceType": 1,
"spuId": "SPU-06CE099C8000028F",
"status": 1,
"storeInfo": {
"storeId": "ST40413763",
"storeName": "三只松鼠官方特卖旗舰店"
},
"storeServiceCapability": {
"storeRankRate": "11.0000",
"storeScore": "86.37"
},
"vipPrice": "28.00"
}
],
"lastPage": false,
"nextPageOffset": 2164292716
},
"msg": "ok",
"requestId": "6d1a3053c1ffa04030d575b009a81d1d",
"time": 1655200713727061
}