当我尝试获得超过 5 条评论时,“评论”API 会返回相同的评论集。
我正在使用 curl 请求获得评论。例如,我试图获得 10 条关于“Impromptu”的评论,起始索引为 20。
curl -X GET --header "Accept: application/json" --header "user-key: <API_KEY>" "https://developers.zomato.com/api/v2.1/reviews?res_id=311104&start=20&count=10"
如果我没有给出 start 和 count 参数,它会给我和它一样的评论,如下所示:
curl -X GET --header "Accept: application/json" --header "user-key: <API_KEY>" "https://developers.zomato.com/api/v2.1/reviews?res_id=311104"
因此,我只得到 5 条关于上述餐厅的评论。这是我的 API_KEY 的限制吗?