我正在创建一个与Facebook集成的简单概念验证网络应用程序。基本功能是它需要显示有关用户的基本信息,以及他们的一些朋友+朋友个人资料图片。所有这些似乎都有效,减去退出 - 当用户点击我的网络应用程序上的注销链接(通过Facebook PHP-SDK生成)时,页面似乎只是刷新 - 用户显然仍然登录到我的网络应用程序。但是,它们已经从Facebook正式登出。知道为什么我看到这种行为吗?我的代码如下:
<?php
require 'sdk/facebook.php';
$facebook = new Facebook(
array(
'appId' => 'xxx' //actual app ID and secret go here,
'secret' => 'xxx'
)
);
##
## Instantiate user object if a logged in user exists
if ($user = $facebook->getUser()) {
try {
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
$user = NULL;
}
}
##
## Set login/logout url
$url = $user ? $facebook->getLogoutUrl() : $facebook->getLoginUrl();
##
## Instantiate friend object data
if ($user) {
try {
$friend_api_data = $facebook->api('/me/friends');
$friends = $friend_api_data['data'];
// Shuffle friends
shuffle($friends);
$shuffled_friends = array();
for ($i = 0; $i < count($friends) && $i < 6; $i++) {
$shuffled_friends[] = $friends[$i];
}
} catch (FacebookApiException $e) {
}
}
?>
<!doctype html>
<html>
<head>
<title>Test</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<h1>Facebook Integration</h1>
<!-- Login/Logout URL -->
<a href="<?= $url ?>"><?= $user ? 'Logout' : 'Login' ?></a>
<!-- Current User Data -->
<?php if ($user): ?>
<h2>Hi, <?= $user_profile['name'] ?></h2>
<img src="https://graph.facebook.com/<?= $user ?>/picture" />
<pre>
<?= print_r($user_profile, TRUE) ?>
</pre>
<?php endif; ?>
<!-- Friend Data -->
<?php if($shuffled_friends): ?>
<h2>Your Friends</h2>
<ul>
<?php foreach($shuffled_friends as $f): ?>
<li>
<a href="http://www.facebook.com/<?= $f['id'] ?>">
<img src="https://graph.facebook.com/<?= $f['id'] ?>/picture" />
<?= $f['name'] ?>
</a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</div>
</body>
</html>
答案 0 :(得分:0)
如果你使用PHP SDK的第3版,你还需要调用destroySession
函数,因为它会在会话中保存用户数据。