I had an application before which extracted my friends list with profile pictures but because Facebook depreciated v1.0 API so it is now not working.
Now I want to extract my friends list with API v2.0 and here is the command I am using to do this
https://graph.facebook.com/me/friends?access_token= [oauth_token]&fields=name,id,picture
The issue is that it only shows the total count of my friends but not there name and ids like this
{
"data": [
],
"summary": {
"total_count": 258
}
}
In the Debug menu it shows this message!
Only friends who installed this app are returned in API v2.0 and higher. total_count in summary represents the total number of friends, including those who haven't installed the app.
Can somebody let me know if I am doing something wrong or what should be the command to extract my friends information with API v2.0.
Thank You!