Sounds like he's saying followers list for a particular page.So you want followers list of a particular page? Or you want to grow your page? Please can you make it clear
Preferably without API. BuT I have a instagram account that I'm willing to use with API if it can be done reliably. Any ideas?
A lot depends if you want to scrape 10k, or 10 million.
But if you use any of the main bots that use the mobile API, they will be able to do it (reasonable numbers assumed).
If you want to scrapea huge number, you need to use multiple accounts and have your bot use them in sequence during the scrape to avoid over requests. I am not sure if all the main bots allow this, but at least one does
https://api.instagram.com/v1/users/{user-id}/follows?access_token=ACCESS-TOKEN
https://stackoverflow.com/a/32410799/1437261
Could IG possibly have a cookie like Google does for bot scraping and blacklisting? As explained why the author of PhoneInfoga:
"When you search on Google using custom requests (Google Dorks), you get very easily blacklisted. So Google shows up a page where you have to complete a captcha to continue. As soon as the captcha is completed, Google create a cookie named "GOOGLE_ABUSE_EXEMPTION" which is used to white list your browser and IP address for some minutes. This temporary white list is enough to let you gather a lot of information from many sources."
There might be a work around the issue of blacklisting and thus don't need multiple accounts to finish the scrape, but not exactly sure. Just a thought.
So you want followers list of a particular page? Or you want to grow your page? Please can you make it clear
What a are you talking about? The limit is more definitely not 200Dont bother trying on mobile API, it limits at 200.
What a are you talking about? The limit is more definitely not 200
With the mobile API, I have never been able to get more than 200 users... I have not tried again since a very long time but it might be different now.
for a very long time you have been able to get more than 200 results.
Some searches are limited. USERNAME SEARCH for instance, is not pageable. Followers_of most definitely is.
Sounds like you were grabbing the first page of results and not appending the max_id to your request to get page 2.
let me know if you still have issues, probably something simple. The simple things always tend to be the hardest as get over lookedMhm weird, pretty sure i was appending, worked on many ig related projects. Ill see what happens when i test again! Thanks for the info.