We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Put an [x] if you meet the condition, else leave [ ].
[x]
[ ]
A specific question, so it's understandable to anyone. You may add pictures.
How can I get the follower count for the logged in individual?
I have tried the following code but it gives me an answer of 25, much lower than my actual follower count of 100
(async () => { const ig = new IgApiClient(); ig.state.generateDevice(USERNAME); ig.state.proxyUrl = process.env.IG_PROXY; const user = await ig.account.login(USERNAME, PASSWORD); const followersFeed = ig.feed.accountFollowers(user.pk); const followers = (await followersFeed.items()).length; console.log({ followers }); })();
The text was updated successfully, but these errors were encountered:
the same , solutions?
Sorry, something went wrong.
My guess is there is pagination going on, still exploring this repo, but I get 25 too
No branches or pull requests
Put an
[x]
if you meet the condition, else leave[ ]
.Question
A specific question, so it's understandable to anyone.
You may add pictures.
How can I get the follower count for the logged in individual?
I have tried the following code but it gives me an answer of 25, much lower than my actual follower count of 100
Code
The text was updated successfully, but these errors were encountered: