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 have a logout button on page.php that serves as a link, and when clicked, directs the the user to logout_facebook.php. The issue is that the log out never occurs, but instead just directs the user to the Facebook homepage. How do I fix this?

Sample Code

<?php

    require_once('engine/facebook/facebook.php');


    //Application Configurations (Facebook)
    $app_id ="XXXXXX";
    $app_secret="XXXXXXX";


    $facebook = new Facebook(array(
        'appId'     => $app_id,
        'secret'    => $app_secret,
        'cookie'    => true
        ));

    $logoutUrl = $facebook->getLogoutUrl(array( 'next' => ($fbconfig['baseurl'].'logout.php') ));

    //on logout page
    setcookie('fbs_'.$facebook->getAppId(), '', time()-100, '/', '.mydomain.com');
    session_destroy();
    header('Location:'.$logoutUrl);     
    /*$facebook->destroySession();
    header('Location: http://mydomain.com/index.php?lo=facebook&ad=1');*/


?>
share|improve this question

2 Answers

If it redirects to the Facebook homepage and after facebook.com/logout.php, that means something isn't configured correctly in your app settings or the next parameter.

Recheck in your app settings to see if you are allowed to redirect to other urls.

share|improve this answer

Try using $facebook->destroySession(); instead of session_destroy();

share|improve this answer

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.