Node.js 如何通过zomato api获得100多家餐厅?

Node.js 如何通过zomato api获得100多家餐厅?,node.js,zomato-api,Node.js,Zomato Api,首先,我获得了一个zomato api。然后,我使用nodejsfetch从api获取餐厅 0-19项: https://developers.zomato.com/api/v2.1/search?entity_id=259&entity_type=city&start=0&count=20 20-40项: https://developers.zomato.com/api/v2.1/search?entity_id=259&entity_type=city&a

首先,我获得了一个zomato api。然后,我使用nodejsfetch从api获取餐厅

0-19项:

https://developers.zomato.com/api/v2.1/search?entity_id=259&entity_type=city&start=0&count=20
20-40项:

https://developers.zomato.com/api/v2.1/search?entity_id=259&entity_type=city&start=20&count=20
40-60项:

https://developers.zomato.com/api/v2.1/search?entity_id=259&entity_type=city&start=40&count=20
60-80项:

https://developers.zomato.com/api/v2.1/search?entity_id=259&entity_type=city&start=60&count=20
80-100项:

https://developers.zomato.com/api/v2.1/search?entity_id=259&entity_type=city&start=80&count=20
100-120(从开始,开始返回空记录)


我的问题是,这是返回更多项目的一种方式。

对于特定的搜索条件,上限限制为100个结果。无法通过搜索API获得超过100个列表(这适用于基本API和合作伙伴API访问)。

对于特定搜索条件,上限限制为100个结果。无法通过搜索API获得100多个列表(这适用于基本API访问和合作伙伴API访问)。

这是一种获得更多结果的方法(通过其他方式)?不,该功能还不可用。这是一种获得更多结果的方法(通过其他方式)?不,该功能还不可用。
https://developers.zomato.com/api/v2.1/search?entity_id=259&entity_type=city&start=100&count=20