I am making an FQL facebook call via the javascript sdk in the following way:
FB.api(
{
method: 'fql.query',
query: 'SELECT uid2 FROM friend WHERE uid1 = me()'
},
function(friendData) {
//Call back code
}
);
I can't figure out how to include my access token. Can someone help me out with the syntax for that?
This solved it: