-1

有人知道 Instagram API 令牌的限制请求吗?自 3 月 30 日起,IG 不再显示来自 IG 的帖子。因为我有 20 多个站点使用相同的 API 请求。

这是 API url 给出的错误:

{
  "error_type": "OAuthRateLimitException",
  "code": 429,
  "error_message": "You have exceeded the maximum number of requests per hour. You have performed a total of 216 requests in the last hour. Our general maximum limit is set at 200 requests per hour."
}

如果有人解决了这个问题,请告诉我。

4

1 回答 1

1

它曾经是每个用户每小时 5000 个请求,但突然 instagram 将此限制更改为每个用户每小时 200 个请求。

虽然没有官方沟通。我在他们的文档中发现了这一点。

Instagram API 使用与 Graph API 相同的速率限制(每位用户每小时 200 次调用),但有一个例外:/media/comments 边缘将写入限制为每位用户每小时 60 次写入。有关更多信息,请参阅 Graph API 的速率限制文档。

https://developers.facebook.com/docs/instagram-api/overview/#rate-limiting

https://techcrunch.com/2018/04/02/instagram-api-limit/

希望这会有所帮助。

于 2018-04-03T14:31:15.123 回答