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 am trying to logout a user. I redirect the user to a logout page. This works ok. but in the logout page, i have a link redirecting to the login page, and when i go there, the user is already logged in... i have an echo to print the UserID...and its printing my user id!

This is my logout function:

function logoutUrl(&$facebook){
  $params = array('next'    => '(remaining url).../logout.php');
  return $facebook->getLogoutUrl($params);

this is my login page:

<?php
include_once "fb_functions.php";
$facebook = getFBInstance();
echo getUser($facebook);
session_start();
?>
<body>
<div id="container"> 
<div id="header">
</div>
<div id="body">
    <h2>
        <?php if (getUser($facebook)): ?>
            <a href="<?php echo logoutUrl($facebook); ?>">Logout</a>
            <?php else: ?>
            <a href="<?php echo loginUrl($facebook); ?>">Login with Facebook</a>
        <?php endif ?>
    </h2>
</div>
</div>
share|improve this question
This might be useful: samoldak.com/fixing-facebooks-php-sdk-logout – dskanth Feb 27 at 8:33

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.