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 can't seem to fix this problem! Even after directing the user to getLoginUrl(), I can't seem to get the user authorized.

I've tested this in two windows: Chrome's Incognito (private) browsing, and normal browsing.

Incognito works, but normal browsing fails with "OAuthException: An active access token must be used to query information about the current user", even after logging out first.

Here's the code:

<?php
require_once("facebook/facebook.php");

require_once("includes/config.php");

$config = array();
  $config['appId'] = 'sdfasdf';
  $config['secret'] = 'asdfasdf';
  $config['cookies'] = true; // optional

$facebook = new Facebook($config);

$uid = $facebook->getUser();

if($uid)
{
    try
    {
        $user_profile = $facebook->api("/me");
        echo "Welcome, " . $user_profile['name'] . "!";
    }
    catch(FacebookApiException $fae)
    {
        echo $fae->getMessage();
        echo "<a href=\"". $facebook->getLoginUrl()."\">Login.</a>";
        $uid = null;
    }
}
else
{
    echo "<a href=\"". $facebook->getLoginUrl()."\">Login.</a>";
}
?>
share|improve this question
I hope that config.php is not part of the Facebook PHP SDK. You might have included it for other purpose like database connection. – dskanth Feb 27 at 5:08

2 Answers

i know that suggesting a different library might not be what you want to hear, but i have used the hybrid auth lib on tons of projects w/o any problems.

http://hybridauth.sourceforge.net/

share|improve this answer

If you are still developing the app and the app is not in production, then deleting the app and creating a new one is the fastest way to fix this problem.

I was struggling with the same problem. Since I am still developing the app, I deleted the app from facebook and created a new app. Now am using the appId and secret of the new app and everything works like a charm.

share|improve this answer
I tried with this but problem still persist – jka Dec 5 '12 at 11:48

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.