I cannot seem to figure this thing out i got everything i wanted working but i cannot get this to work: I want to see if the active loged in user is friends with a specific account and if they are not the user is promt with a add friend window. this is what is got:
FB.api(
{
method: 'fql.query',
query: 'SELECT uid1, uid2 FROM friend WHERE uid1 = me() AND uid2 = 100001314420757'
},
function(response) {
document.getElementById("msg2").innerHTML='Users are: ' + response[0].[something here];
}
);
i think i got the right FQL query (got it from FB) but i need the right response so if you have a name query you'll have response[0].name if tryed about anything i can think of (response.friend or friends and much more but i cannot get it to work.) if i just do response; then i get undefined.
console.log(response)in the callback function to see what response you’re actually getting from the API (and look into your browser’s JS console afterwards). – CBroe Aug 9 '12 at 15:30