I am stuck in one position where i am integrating Facebook javascript SDK. I want to list my friends with their name and picture who has not installed my application.
I will use it where i can then use them to invite via FB.ui dialogue.
I have tried certain things where i am able to get list of friends but not able to distinguinsh them.
Can anyone please pass on knowledge or code for same.
I am trying this but this is not giving me any response.
FB.api(
{
method: 'fql.query',
//query: 'SELECT pic_square FROM user WHERE uid='+udid // get picture in other detail
query: 'SELECT uid, name, pic_square FROM user WHERE is_app_user AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me())'
},
function(response) {
//alert('Your pic is ' + response[0].pic_square);
alert(response);
}
);