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.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…