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.

I am getting the error "An active access token must be used to query information about the current user". There seems to be tons of articles and ideas, but am very confused and it seems that things are changing as well. A lot say to use offline-access but that appears to be going away. I did find this article.

Does anyone have an example using the PHP SDK?

I tried doing something like the below but it does not seem to work; $FBuser is still zero:

$token_url =    "https://graph.facebook.com/oauth/access_token?" .
                            "client_id=" . FB_APP_ID .
                            "&client_secret=" . FB_APP_SECRET .
                            "&grant_type=client_credentials";
list($name, $ACCESS_TOKEN) = explode("=", file_get_contents($token_url) );
$facebook->setAccessToken(ACCESS_TOKEN);
$FBuser = $facebook->getUser();
share|improve this question

2 Answers

Try this (change the scope parameter according with this link):

// Checks if the user granted the access (after the redirection bellow)
$user = $facebook->getUser();
if(!$user) {
    // If not: Retrieves the login url in order to redirect the user
    $url = $facebook->getLoginUrl(array('scope' => 'user_about_me', 'grant_type' => 'client_credentials'));
    // redirect here (after accepting the user will be redirect back to the same url. In other words this script, that will check again if the user is authenticated)
} else {
    // Now the user is authenticated
    $user_data  = $facebook->api('/me');
    $user_token = $facebook->getAccessToken();
    // Saves the access token
}
share|improve this answer
This is a BAD way ! offline_access is deprecated ! Please note: On October 3, 2012, the offline_access permission will be removed. developers.facebook.com/docs/authentication – Roni Sep 8 '12 at 21:43
@Roni You down-voted just because of the offline_access? It's just a parameter it does not make the answer wrong -.-' – KeyneON Sep 8 '12 at 22:32
Great! you'r giving someone a bad example, not following Facebook Guidelines. and yes, the down vote is because "something along this lines" is not a good answer, if you wan't to help at least fix your code example. – Roni Sep 9 '12 at 6:11
@Roni LOL. What facebook guidelines? This the Facebook PHP SDK created by the Facebook. You don't seen to know what you're talking about. Stop answering on tags (PHP) you don't know. Just because it's Facebook doesn't mean that you should answer =) – KeyneON Sep 9 '12 at 13:09

What do you mean by new access_token ? Did the user install the application or this is the first time you try to get information about him ?

Facebook Authentication explains exactly what needs to be done to authorize the user and get his information.

If this is an application on Facebook (ex. apps.facebook.com/my_cool_app) then follow this link.

(all the other examples are in first link)

share|improve this answer
When he will answer what does he mean by "new access_token" I can edit my post accordingly. – Roni Sep 9 '12 at 6:11
Please keep remarks like that to your self. In order to make server-side calls to get the facebook ID of a user the user need to authenticate the app. which means he needs to go through the Authentication Process. – Roni Sep 9 '12 at 16:32
roni, so he is what I mean by new access tocken. 1) the user is logged into FB 2) the user has already granted access to my page tab app 3) the user clicks on the link in the admin that sends him to My admin page. 4) When the user comes to my page, i get the error "An active access token must be used to query information about the current user" thanks – randy Sep 10 '12 at 12:26

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.