I'm trying to show a list of all Facebook friends of the logged in user. However, using the code as shown below only 1 Facebook friend is shown - instead of all. Anybody any idea what might the issue? I'm using the Facebook Javascript SDK together with jQuery.
Thanks! Ron
FB.api( {
method: 'fql.query',
query: 'SELECT uid, name, pic_square FROM user WHERE uid IN (SELECT uid1 FROM friend WHERE uid2 = ' + FB.getSession().uid +')'
},
function(response) {
for(i=0;i<response.length;i++) {
$('#friend-info').html('<img src="http://graph.facebook.com/' + response[0].uid + '/picture"><br />').fadeIn('fast');
}
}
);