Results 4 comments of keharv

Please post an excerpt of your code so I can see exactly what you're doing, and I can give you a solution. Thanks.

Instagram uses pagination. As a result, to go from beginning to end, you must pull all of the records then traverse them backwards. i.e. ->grab all user posts ->work backwards...

Example for getting a user's post count ``` //requires for instagram /* tslint:disable:no-console */ var {IgApiClient} = require('instagram-private-api'); var { get } = require('request-promise'); // request is already declared as...

The error generally denotes a rate-limit has been reached; I encountered this issue after logging into the same account repeatedly. ##Solution ->Delete your session ->Change your IP ->Try again If...