Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This code:

    $fql2 = "SELECT uid, name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = xxxxxxxxx)";

$params = array(
    'method' => 'fql.query',
    'access_token' => $user->accessToken,
    'query' => $fql2,
    'callback'  => ''
);

$result = $facebook->api($params);
var_dump($result);

Gives me error: Uncaught Exception: 101: Invalid API key

My appId and secret are correct. I have checked it by executing $facebook->api('/me') which works perfectly alright. My access token is alright too with all required permissions. There's some problem with the way i'm trying to call the api to execute fql query.

share|improve this question
recheck the app_id and app_secret that you have supplied to your $facebook variable. – Shadowfax Jan 8 at 5:39
If you've authenticated your user properly, you should not need to pass an access_token as part of your $params. – cpilko Jan 8 at 22:16
I'm receiving the access_token from another source (a client on mobile) while this script is being run on server end. That's why I have to pass it to the $params array. – jazib Jan 8 at 22:27
Check the access token using the debug tool: developers.facebook.com/tools/debug – CBroe Jan 9 at 15:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.