8

Walmart 有 Developer API 和 SDK,但这些似乎是为电视、家具等一般物品设计的……有人碰巧知道 Walmart Grocery 是否有 SDK 或 API?我的用例是以编程方式为给定商店填充 Walmart Grocery 购物车。

4

1 回答 1

1

对于沃尔玛杂货 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'

不确定这是否回答了您的问题,但我希望这是一个开始。

于 2018-12-05T18:37:58.770 回答