我有以下代码(正确添加了我的facebook.php
,appId
和appSecret
也是正确的):
<?php
define('APP_ID', 'XXX');
$facebook = new Facebook(array(
'appId' => APP_ID,
'secret' => 'XXX',
));
$userId = $facebook->getUser();
?>
<html>
<body>
<div id="fb-root"></div>
<?php if ($userId) {
$userInfo = $facebook->api('/' + $userId); ?>
Welcome <?= $userInfo['email'] ?> <fb:logout-button></fb:logout-button>
<?php } else { ?>
<div id="fb-root"></div>
<fb:login-button></fb:login-button>
<?php } ?>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '<?= APP_ID ?>',
status : true,
cookie : true,
xfbml : true,
oauth : true,
});
FB.logout(function()
{
top.location.href = 'http://www.google.com'
});
};
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
我的代码始终输出Welcom myemail@email.com
。如何让它正确注销,以便我可以测试它再次登录?
答案 0 :(得分:1)
删除cookie,会话等。然后使用facebook API执行以下操作:
$logoutUrl = $facebook->getLogoutUrl(array('next' => $_SERVER['HTTP_REFERER'], 'session_key' => $fb_session['session_key']));
$fb_session = $facebook->setSession(null);
header('Location:' . $logoutUrl);
如果您希望用户返回特定页面,只需将“下一个”值更改为您希望他们返回的任何页面。
答案 1 :(得分:0)
$fb_session = $facebook->setSession(null);
@Somnath Muluk,似乎这段代码会清除会话,所以不仅仅是fb app会退出,facebook网站的loginstatus也会很清楚。
但我认为app-logout-option只会让应用程序退出fb。当我继续访问我的fb feed时,它应该可以工作而不让我再次登录选项