-
Hi Sbertix
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @anilsari, Assuming you're not actually Swiftagram is based on Instagram Private APIs, which are used by the official apps to deal with user interaction. They're not meant for bots and they're severely limited to prevent abuses. Most apps relying on "quick" followers/following pagination tend to use a scraper instead. The implementation is pretty straightforward, if you base it on Instagram mobile website, but it's beyond the scopes of this project. |
Beta Was this translation helpful? Give feedback.
Hey @anilsari,
Assuming you're not actually
print
ing the results in the your code (as printing each element to the console is of course a lot slower than processing it), it's a valid question.Swiftagram is based on Instagram Private APIs, which are used by the official apps to deal with user interaction. They're not meant for bots and they're severely limited to prevent abuses.
So, unfortunately there's not a quicker way to deal with it using them – especially for friendship endpoints, which are heavily rate limited.
Most apps relying on "quick" followers/following pagination tend to use a scraper instead. The implementation is pretty straightforward, if you base it on Instagram mobile w…