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 the following script which will allow a user to login to my website using their facebook account, request the appropriate permissions, and if accepted, it will post a message on a wall:

<?php
    require 'facebook.php';

    $facebook = new Facebook(array(
        'appId'  => 'removed for security reasons',
    'secret' => 'removed for security reasons',
        'cookie' => true,
    ));

    $session = $facebook->getSession();

    if ($session) {

        if (isset($_GET[id])) {
            $post = $facebook->api("/" . $_GET['id'] . "/feed", "POST",  array('message' => 'Hello!'));
            echo 'A message has been posted on your friends wall';

        } else {

            $friends = $facebook->api('/me/friends');

            foreach ($friends as $key=>$value) {
                echo 'You have ' . count($value) . ' friends<br />';

                foreach ($value as $fkey=>$fvalue) {
                    echo 'friend id = ' . $fvalue[id] . ' - friend name = ' . $fvalue[name] . ' - <a href="/stage0.php?id=' . $fvalue[id] . '">post message</a><br />';
                }
            }
        }

    } else {

        $loginUrl = $facebook->getLoginUrl(array(
            'req_perms' => 'publish_stream',
            'next' => 'http://'.$_SERVER['SERVER_NAME'].'/stage0.php',
            'cancel_url' => 'http://'.$_SERVER['SERVER_NAME'].'/cancel.php',
        ));

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

I then have the following script to log the user out:

<?php
    error_reporting( E_ALL | E_STRICT );
    ini_set('display_errors', 1);
?>

<?php
    session_start();
?>

<html>
    <head>
        <title></title>

        <?php
            $_SESSION = array(); 
            session_destroy();
        ?>

        <meta http-equiv="refresh" content="0;index.php">
    </head>

    <body>
        <h1>logout</h1>
    </body>
</html>

This clears the sessions I created, but it does not log them out of facebook at all. How do I clear the sessions I create and also log them out of facebook?

share|improve this question
2  
Once you get in, facebook'll never let you out :-P – Guy Fawkes May 13 '11 at 8:48
I know!!!!!!!!! – oshirowanen May 13 '11 at 8:55
@Guy Fawkes -- Welcome To The Hotel Facebook. – Spudley May 13 '11 at 9:11
@Spudley haha, it reminds me of that oatmeal cartoon about facebook, hilarious :-) – Guy Fawkes May 13 '11 at 9:46

3 Answers

up vote 2 down vote accepted

Recommended way to log out a user from both your application and Facebook, is to call the logout feature of the javascript SDK.

<a href="/auth/logout" onclick="FB.logout();">logout</a>

check : http://developers.facebook.com/docs/reference/javascript/FB.logout/

share|improve this answer
How do I do this at the serverside. I am login in via the serverside, so logging out from the serverside would be ideal for my application. – oshirowanen May 13 '11 at 8:56
You had to do both, that's why I let the href /auth/logout, which is on my serverside, then i can do whatever i want, when i received a call there ;) THe onclick javascript function is mainly for client side – Jean-Christophe Meillaud May 13 '11 at 11:17
could you please provide more info about /auth/logout as I do not want to do this client side, I want to do this server side. – oshirowanen May 13 '11 at 11:31
I'm just deleting the session, serverside, as i'm mainly using zend, i do something like : Zend_Registry::get('auth')->clearIdentity() ... – Jean-Christophe Meillaud May 15 '11 at 22:52
s\javascript\facebook ? – user529649 Dec 19 '11 at 15:25
/* Use access token i.e. $_SESSION['facebookAccessToken']*/

function logoutUser($sessionKey)
{
    include_once 'facebook.php';
    $facebook = new Facebook( array('appId'=>FACEBOOK_APP_ID , 'secret'=>FACEBOOK_APP_SEC , 'cookie' => true));
    $logoutUrl = $facebook->getLogoutUrl(array('next' => BASE_URL , 'session_key' => $sessionKey));
    return $logoutUrl;
}

$access_array = explode('|' , $_SESSION['facebookAccessToken']);

$sessionKey = $access_array[1];

$redirectUrl = logoutUser($sessionKey);

header('Location: '.$redirectUrl );
share|improve this answer

Facebook Oauth Logout

share|improve this answer
This didn't work – Waqar Alamgir May 13 '11 at 11:58

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.