When I search for my friends with the parameters
me/?fields=friends
It gives me a JSON with key friends, and inside friends, data
. And then it has paging
and inside it, next
{friends: {data:[], paging: {next:"a_monstrous_url"}}}
Only around 20 friends are returned. I tried setting a higher number in limit
me/?fields=friends.limit(200)
But still the same. Going to the link in json->pading->next, it gives me an empty array of friends.
How can I see the rest of my friends list
@edit
I just found out that Graph API is only returning information about the users who authorized the app to get information from them.