Since facebook has upgraded their api version according to v2.2 no fql query will be use I want to fetch friendlist of user (just name and birthdate) but while fetching the data using
FB.api("/me/friends",function (response) {
if (response && !response.error) {
/* handle the result */
console.log(response);
}
}
);
}
now from above code its giving me only no of friends in count variable but in array of data variable is blank.