Reputation: 6595
I am using Instagram public API using the following endpoint but am only getting details of one follower in the response. Why is the API returning only one follower (that is part of sandbox users, none else)?
https://api.instagram.com/v1/users/self/followed-by?access_token=ACCESS_TOKEN where ACCESS_TOKEN is one I got from Instagram.
Upvotes: 1
Views: 7102
Reputation: 125
If your application is in sandbox mode, you can't access data of users other than listed in sandbox users.
As mentioned in API Behavior section of this documentation
Data is restricted to sandbox users and the 20 most recent media from each sandbox user.
Upvotes: 1