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;
?>