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 using the facebook login API to log into the facebook..but i got a problem that i get log into the website but i cant logout my session. To log out the session i have to remove the app from the facebook..even the log out in facebook doesnt log out the session in my website...i have used the code below..

<?php
/**
 * Copyright 2011 Facebook, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may
 * not use this file except in compliance with the License. You may obtain
 * a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */
$result = '';
require 'facebook.php';

// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
  'appId'  => '402291129838537',
  'secret' => 'b2331a80a2c4f0fee55e7b73a257c9f9',
));

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

// We may or may not have this data based on whether the user is logged in.
//
// If we have a $user id here, it means we know the user is logged into
// Facebook, but we don't know if the access token is valid. An access
// token is invalid if the user logged out of Facebook.

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

// Login or logout url will be needed depending on current user state.
if ($user) {
    $logoutUrl = $facebook->getLogoutUrl();
   // $result .= '<div class="fb-login-button"><a href="'.$logoutUrl.'">Logout</a></div>';
} else {
  $loginUrl = $facebook->getLoginUrl(array(
        'scope'     => 'email,read_stream, publish_stream, user_birthday, user_location, user_work_history, user_hometown, user_photos',
        'redirect_uri'  => 'http://192.168.2.201/turbo/' ,
        ));
        $result .= '<div class="fb-login-button"><a href="'.$loginUrl.'">Login</a></div>';


}

$jVars['module:fblogin'] = $result;
?>
share|improve this question
this is a bug in facebook for logout. it will logout but it is taking some time around 30 minutes. – Yogesh Suthar Oct 16 '12 at 1:37
ok so is there any way to fix or another method... – Subek Shakya Oct 16 '12 at 3:33
1  
thanks a lot.... – Subek Shakya Oct 16 '12 at 12:31

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.