Adding an access token to an FQL using the facebook javascript sdk

390 Views Asked by At

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?

2

There are 2 best solutions below

0
On

This solved it:

FB.api(
       {
       method: 'fql.query',
       query: 'SELECT uid2 FROM friend WHERE uid1 = me()',
       access_token:accessToken
       },
       function(friendData) {
       //callback code
       }
    );
2
On

The AcessToken is provided by the function FB.login, where you define the permissions that you need, and then, the user accepts it, generating an AcessToken. So, after that, you can make your Graph request