user4100391
user4100391

Reputation:

Exceeding Instagram API request limit

How can I possibly exceed the Instagram API limit of 500 requests per hour if I have code in place that caches every 15 seconds (240 requests per hour)?

UPDATE: We ended up creating a new client, generating a new access token and using that in in our app. So far so good. Our code is making 1 call per minute, caching it and displaying the cached data for most visitors. The only thing I can think of is maybe something else was using our access token - leaking our bank of requests. I wish Instagram kept a log or something so we could see if requests were coming from an unauthorized source.

Upvotes: 1

Views: 1282

Answers (1)

krisrak
krisrak

Reputation: 12952

which API is it?

Instagram POST APIs have different limits (30/hr in sandbox and 60/hr in live mode):

/media/media-id/likes
/media/media-id/comments
/users/user-id/relationships

combined all API calls have 5000/hour.

https://www.instagram.com/developer/limits/

Upvotes: 0

Related Questions