API Speed ​​Limit Issue

I always and constantly get the following error when trying to follow the user through instagram, although the 5000 5000 limit was not exceeded. Why is this?

{"meta":{"error_type":"APIError","code":400,"error_message":"Client request limit reached"}}
+4
source share
3 answers

While an API request with an access token of 5000 (any API call), some APIs, such as follow, unfollow, like, comment, are limited to 350 hours.

+3
source

I had the same problem. In my case, I sent mail requests from the server side (Google engine), and now I send mail requests from the client (using js), and it works well.

0
source

It depends on your request. Instagram has a new API limit, 100 characters / hour, 60 follow / unfollow / hr If you are authenticating on the server side and signing the headers, check Instragram authentication for developers.

I am currently launching a website: http://instapromobiz.com , which automates likes / follows / unsubscribes using these restrictions. It works great, check it out.

0
source

All Articles