1) I'm in Sandbox mode
2) App have a Server-side (Explicit) Flow
3) "Disable implicit OAuth" checkbox active in Manage Clients
4) I have authorized my sandbox user - Instagram API returns data with access_token and user
When i try to retrive some data from Relationship Endpoints Instagram API returns an empty data as this:
{"pagination":{},"meta":{"code":200},"data":[]}
Code:
ACCESS_TOKEN = xxxxx
url = 'https://api.instagram.com/v1/users/self/follows?access_token=%s' % ACCESS_TOKEN
response = requests.get(url)
data = response.text
When i open url in browser - same situation
What's wrong?