I am trying to count friends' gender with Facebook JavaScript API. The problem is FB SDK is based on async call so I cannot fire an action after all the queries are done.
For example, here is code to count how many male/female friends I have. But the last line won't work as it can get executed while FB.api() is still running.
What's the best way to handle this?
FB.api('/me/friends', function(response) {
if(response.data) {
var genderCount = {};
$.each(response.data, function(index, friend) {
FB.api('/' + friend.id, function(frienddata) {
if (frienddata.gender) {
if (genderCount[frienddata.gender]) {
genderCount[frienddata.gender]++;
}
else {
genderCount[frienddata.gender]=1;
}
}
});
});
});
// later do something with genderCount
alert('I have ' + genderCount['male'] + ' male friends'); // won't work