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've seen oodles of similar questions on here, but either they aren't asking the same thing or the solution doesn't work for me. My problem is that this gives me the Uncaught OAuthException in my error log:

require_once 'fb-php-sdk/facebook.php';

// Facebook App Info
$app_id = MYAPPID;
$app_secret = MYAPPSECRET;

// Load info into config array for Facebook object
$config = array(
    'appId' => $app_id,
    'secret' => $app_secret,
    'fileupload' => false,
    'cookie' => true
);

// Initialize Facebook
$fb = new Facebook($config);

// Retrieve user ID
$my_access_token = $fb->getAccessToken();
$uid = $fb->getUser();

// Login if the UID was 0
if (!$uid) {

    // Login parameters including redirect URL
    $params = array(
        'scope' => 'read_stream, friends_likes',
        'redirect_uri' => 'MYURL'
    );

    // Log the user in
    $loginUrl = $fb->getLoginUrl($params);
}

echo '<p>w00t!</p>';
echo '<p>token1: ' . $my_access_token;

$user_profile = $fb->api('/me', 'GET', array('access_token' => $my_access_token));
echo '<p>Name: ' . $user_profile['name'] . '</p>';

This outputs "w00t!" followed by my token, but then it never prints my user name and it gives my the error in my log. Any ideas? I took the user profile code right off of an example from the documentation.

share|improve this question
What's the error? Can you post the error as well. – Reno Jones Feb 23 at 19:03
Here's the error: [23-Feb-2013 11:33:03 America/Denver] PHP Fatal error: Uncaught OAuthException: An active access token must be used to query information about the current user. thrown in /home/user/public_html/testapp/fb-php-sdk/base_facebook.php on line 1254 – Walt Feb 23 at 20:18
Your accesstoken is not active, are you hardcoding it somewhere? If you believe you are generating it everytime then the call that is being made to generate it, has issues in itself. – Reno Jones Feb 23 at 20:30
Yea sorry, I am very new at this. Is there a different token I should be passing in? I saw somewhere someone using $_SESSION[something, but that didn't work for me when I tried it. – Walt Feb 23 at 20:54
No worries, Access Token is something which is being generated by facebook for you. This token proves to be something which allows you to have access to facebook objects (pages, feeds, photos etc). Here is the link to a small tutorial to start off with authentication - jobyj.in/api/facebook-authentication-using-php-sdk Once you learn authentication and token, then the next step would be to play with Graph Objects. – Reno Jones Feb 23 at 21:09

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.