Facebook friend list in Facebook Android SDK 3.14

1.3k Views Asked by At

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,

1

There are 1 best solutions below

0
On
new Request(
session,
"/me/friends",
null,
HttpMethod.GET,
new Request.Callback() {
    public void onCompleted(Response response) {
        /* handle the result */
    }
}).executeAsync();

Permission: A user access token with "user_friends" permission is required to view the current person's friends.