本文介绍了Instagram API要求限制最大200个吗? (2018年4月)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

Anyone know the limit request for the Instagram API Token? Since Mar 30, the IG is not showing the posts from IG. As I have more than 20 sites using the same API request.

这是API网址给出的错误:

This is the error given by the 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."
}

请告诉我是否有人解决了此问题.

Kindly let me know if anyone has fixed this issue.

推荐答案

过去,每位用户每小时可处理5000个请求,但是instagram突然将此限制更改为每位用户每小时200个请求.

It used to 5000 request per user per hour, but suddenly instagram changed this limit to 200 request per hour per user.

尽管没有官方沟通.我在他们的文档中找到了.

Although no official communication. I found this in their documentation.

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

The Instagram API uses the same rate limiting as the Graph API (200 calls per user per hour) with one exception: the /media/comments edge limits writes to 60 writes per user per hour. Please refer to the Graph API's rate limiting documentation for more information.

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

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

希望这会有所帮助.

这篇关于Instagram API要求限制最大200个吗? (2018年4月)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 03:46