My code is
if (!facebook.isSessionValid()) {
facebook.authorize(this,
new String[]{"email","read_stream","read_custom_friendlists"},
new Facebook.DialogListener() {
public void onCancel() {
// Function to handle cancel event
}
public void onComplete(Bundle values) {
try {
getProfileInfo();
mAsyncRunner.request("me/friends ", new FriendsRequestListener());
/* Bundle params = new Bundle();
params.putString("fields", "name, picture");
new FriendsRequestListener();*/
}
catch (Exception e)
{
System.out.println(e);
//Log.d("Error in fetching frnd list",String.valueOf(e));
}
//getProfileInfo();
// Function to handle complete event
// Edit Preferences and update facebook acess_token
}
please checkout my code , I also tried graph API explorer but still on the same result don't know why .. !!
it returns
{
"data": [ ],
"summary": {
"total_count": 446
} }