0

我正在使用以下代码从 Google 购物内容 API 获取产品列表。

   $products = $service->products->listProducts($merchantId,
                   array('pageToken' => $nextPageToken,
                         'maxResults' => 100));

我为每个 API 请求获得 100 个产品,因为'maxResults' => 100

但我想知道"maxResults"参数的最大限制。

我为此检查了以下链接,但没有得到最大限值。

https://developers.google.com/shopping-content/reference/rest/v2/products/list

有谁知道最大限制值。?

4

1 回答 1

2

250 根据文档(https://developers.google.com/shopping-content/guides/order-limits#list-method)...

list 方法存在以下已知问题:

maxResults: This field is not yet implemented, but will be available
soon with a default of 25 results and a max value allowed of 250.
于 2021-02-18T09:07:00.633 回答