I my application I want to get list of user friends. So am using bellow code.
dynamic mw2 = client.Get("/me/friends",
new
{
access_token = accessToken
});
In response Data array comes as empty & count comes as 304 (which count of my friends).
I have also added permission "user_friends" while taking app permissions from user. But when I referred facebook guid it says that
"user_friends
Provides access the list of friends that also use your app. These friends can be found on the friends edge on the user object.
In order for a person to show up in one person's friend list, both people must have decided to share their list of friends with your app and not disabled that permission during login. Also both friends must have been asked for user_friends during the login process."
As per this description I will not be able to get all friends list for my app. Is there any other way to get list of friends ?