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 got error when i m using facebook SDK for PHP. for developing fb apps. when i clicked on logout link, it didn't work to make a logout operation and reloads same page with maintain a login session

<?php
require_once 'facebook.php';
$detail = array(
    'appId'=> "my app id",
    'secret'=> "app secret",
    'cookie'=>true,
);
       $facebook = new facebook($detail);
     //  $facebook->getSignedRequest();
       $user = $facebook->getUser();
?>

<html>
<head>
<title>Sample</title>
</head>
<body>
    <?php

    var_dump($facebook);
    if($user){
        try {
            echo '<form action="uploadStatus.php" method="POST">';
            echo '<input type="text" placeholder="Enter your status here" name="status">';
            echo '<input type="button" value="submit" name="Submit">';
            echo '</form>';
            // var_dump($logoutUrl);
    }
    catch(FacebookApiException $e) {
    $login_url = $facebook->getLoginUrl(); 
    echo 'Please login here. <a href="' . $login_url . '">login.</a>';
    error_log($e->getType());
    error_log($e->getMessage());
    $user=null;
  }
    }
    if($user){
            $logoutUrl = $facebook->getLogoutUrl();
            echo '<a href="'.$logoutUrl.'">Logout</a>';
             $login_url = $facebook->getLoginUrl();
            echo 'Please login here.<a href="' . $login_url . '">login.</a>';  
    }else{            
            $login_url = $facebook->getLoginUrl();
            echo 'Please login here.<a href="' . $login_url . '">login.</a>';       
 // var_dump($login_url);
    }
    ?>


</body>
</html>

logout link is not working.

share|improve this question

1 Answer

up vote 6 down vote accepted

Actually there is a problem in new version of PHP SDK, and

$logoutUrl = $facebook->getLogoutUrl(); 

not working,

you can try it to set other file logout.php in that you have to start session and then destroy it..

 logout.php

session_start();
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.