I am authenticated using Instagram and I received an access token with a scope of follower_list . Then I tried to find a list of my subscribers:
https://api.instagram.com/v1/users/self/followed-by?access_token=123.456
and all i got was an empty array like following
{ "pagination": {}, "meta": { "code": 200 }, "data": [] }
I really donβt know if this is a problem on the part of Instagram, or is it the expected behavior since I am working in Sandbox mode (although the documentation says that I can expect to get real data even in Sandbox mode)
source share