My permissions:
facebookLoginButton.setReadPermissions(
Arrays.asList("public_profile", "user_friends","read_friendlists"));
Callback functions:
new Request(Session.getActiveSession(), "/" + USER_ID + "/friends", null, HttpMethod.GET,
new Request.Callback() {
public void onCompleted(Response response) {
showLogInfo("###########" + response.getRawResponse());
}
}).executeAsync();
This above function I'm calling to get facebook friends list. but I'm getting following response.
{"summary":{"total_count":342},"data":[]}
My doubt is I'm getting total count. but why can't I get data list ? Please someone help me to Identify my mistake. Thanks in Advance.