I am using Facebook SDK 4.x
, and i need to get friend list with name but i can't get it,
i have also implemented this graph API
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/me/friend",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
and this is my reponse
response {Response: responseCode: 200, graphObject: {"summary":{"total_count":3},"data":[]}, error: null}
I am not getting friend list with name, if you have any idea than plz give me. Thanks in Advance.