有用于沃尔玛的Developer API和SDK,但是这些似乎是为电视,家具等一般物品设计的。有人碰巧知道是否有用于沃尔玛Grocery的SDK或API吗?我的用例是为指定商店以编程方式填充Walmart Grocery购物车。
答案 0 :(得分:1)
对于Walmart杂货店api,您可以使用cURL来获得杂货店商品列表。在下面提供的示例中,我将使用PHP (Guzzle/HTTP)
搜索鸡蛋(PHP)
$client = new Client(['base_uri' => 'https://grocery.walmart.com/v4/api/']);
$method = 'GET';
$path = 'products/search';
$query = [
'query' =>
[
'storeId' => '1855', //store location
'count' => 50,
'page' => 1,
'offset' => 0,
'query' => 'Egg Dozen'
]
];
$req = $client->request($method, $path, $query);
$data = json_decode($req->getBody()->getContents());
$products = $data->products;
print_r($products);
这将根据您的搜索查询列出50至60种食品杂货。
在cURL中搜索鸡蛋
curl -X GET \
'https://grocery.walmart.com/v4/api/products/search?storeId=1855&count=1&page=1&offset=0&query=eggs' \
-H 'Postman-Token: 1723fea5-657d-4c54-b245-027d41b135aa' \
-H 'cache-control: no-cache'
不确定是否能回答您的问题,但我希望这是一个开始。