I am trying to get friend list using Facebook Android SDK 3.14
but getting no results
. Some pointed out that friends who are using my app can only be retrieved
but I want to retrieve my complete friend list
. Can anyone please tell me how can i achieve that?
I am using the following code:
<code>
Request.executeMyFriendsRequestAsync(session, new Request.GraphUserListCallback() {
@Override
public void onCompleted(List<GraphUser> users, Response response) {
// TODO Auto-generated method stub
Log.i("mustang", "response; " + response.toString());
Log.i("mustang", "UserListSize: " + users.size());
}
});
Thanks,
Permission: A user access token with "user_friends" permission is required to view the current person's friends.