Skip to content Skip to sidebar Skip to footer

Accessing The Username Of All The Followers Of A User In Instagram Using Scrapy Or Instagram Python Api

How can I get the username of each of the followers of a user in instagram? In the json I can only have access to the number of the followers. Here is the URL for json processing I

Solution 1:

You cannot get other user's followers using Instagram APIs anymore, you can only get followers/following list for the user that is authenticated. You will need to get your app reviewed and approved by instagram and go to LIVE mode to get access to all data from API and also you need "followers_list" scope permission.

The code in first part of the question is using private Instagram API and that does not support getting followers list.

(in short you have just mixed up code from all over the place, it is not even related, one is public api and other private api, you need to read docs)

Post a Comment for "Accessing The Username Of All The Followers Of A User In Instagram Using Scrapy Or Instagram Python Api"