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'm stuck now, last days my facebook connect worked at localhost.

It's does not work anymore, I didn't touch the code. I see i'm not alone with an infinite loop error.

include_once('/src/libs/providers/facebook.class.php');

// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook([
    'appId'  => '173678432757289',
    'secret' => '...',
    'cookie' => true
]);

// Get User ID
$user = $facebook->getUser();

if ($user) {
    try {
        // Proceed knowing you have a logged in user who's authenticated.
        $user_profile = $facebook->api('/me');
        $response = $user_profile;
    } catch (FacebookApiException $e) {
        // error_log($e);
        $user = null;
        $response = null;
    }
}

// Login or logout url will be needed depending on current user state.
if ($user) {
    $logoutUrl = $facebook->getLogoutUrl();
} else {
    $loginUrl = $facebook->getLoginUrl(array(  
        "response_type"=> "token", //Can also be "code" if you need to 
        "scope" => "email,user_birthday"
    ));

    header('Location: '. $loginUrl);
}

The problem is on the last header location, I can print the loginUrl, after that it falls.

In my FB apps, I tried to reset the app secret. My app domains field is "localhost" (it worked last days)

Its pretty annoying, someone could help for that plz? Any update on FB connect API?

Thanks, regards.

share|improve this question
Fixed with the last SDK PHP version. – sylouuu Dec 10 '12 at 10:17

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.