Retrieving more than 150 Instagram comments

Ok, This is going to be a very "Hacky" solution, and I am not currently setup to do this myself (due to lack of ADSL at home) but I can provide a step by step guide of how I would approach this issue.

First of all you will need a tool called "Charles Web Debuging Proxy"

There is a tutorial on the site on how to enable "SSL debugging" in charles, (which will require you to install a new "root certificate" on your mobile device, to trick it into thinking that https transactions signed by charles are actually signed by instagram.com )

Now Set your mobile device to route all requests through said proxy ( which will have to be installed on your local wi-fi network.)

go to https://www.google.com and check that charles is logging both requests and responses.

Once this is all setup correctly then you can take a look at the API calls which the instagram app itself uses to generate said comment pages.


The generic answer here is "no, that's not possible via regular endpoints".

Instagram updated Rate Limits (after Nov 17, 2015). All rate limits on the Instagram Platform are controlled separately for each access token, and on a sliding 1-hour window. Live apps have higher rate limits than apps in Sandbox Mode.

Which state next limitations in global context:

Global Rate Limits

Global rate limits are applied inclusive of all API calls made by an app per access token over the 1-hour sliding window, regardless of the particular endpoint. Rate limits also apply to invalid or malformed requests.

  • Sandbox RATE LIMIT: 500 / hour
  • Live RATE LIMIT: 5000 / hour

Plus separately limitations for comments endpoints:

Endpoint-Specific Rate Limits

Endpoints used to publish (POST or DELETE) have rate limits that are applied on an per-endpoint basis. Any calls made to these endpoints by your OAuth Client are also counted towards the global rate limits noted above.

  • Sandbox /media/media-id/comments: 30 / hour
  • Live /media/media-id/comments: 60 / hour

If your app exceeds any of these rate limits, you will receive a response with an HTTP response code of 429 (Too Many Requests).

As soon as Instagram Platform controls it on per access token basis, you might achieve a bigger limits using multi-threading with multiple access tokens. But it has caveats: 1. not everything could be paralleled from multiple access tokens, as context will be different. 2. It might contradict with Platform Policy and TOS