以下控制台记录“必须使用活动访问令牌来查询有关当前用户的信息。”显然我的js没有从php获取访问令牌 - 我如何纠正这个?下面的代码是FB在他们的博客上发布的虚拟克隆: https://developers.facebook.com/blog/post/534/
<?php
$basePath = "/usr/lib/fb";
// Include the fb sdk
require 'fb/src/facebook.php';
// Create our Application instance
$facebook = new Facebook(array(
'appId' => '#####', // I do repeat this in fb.js so I can externalize it
'secret' => '#####',
));
// See if there is a user from a cookie
$user = $facebook->getUser();
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
echo '<pre>'.htmlspecialchars(print_r($e, true)).'</pre>';
$user = null;
}
}
?>
<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<body>
<?php if ($user_profile) { ?>
Your user profile is
<pre>
<?php print htmlspecialchars(print_r($user_profile, true)) ?>
</pre>
<?php } else { ?>
<fb:login-button></fb:login-button>
<?php } ?>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId: '<?php echo $facebook->getAppID() ?>',
cookie: true,
xfbml: true,
oauth: true
});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
FB.Event.subscribe('auth.logout', function(response) {
window.location.reload();
});
FB.api('/me/permissions', function (response) {
console.log(response);
} );
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
</body>
</html>
答案 0 :(得分:1)
您已加载并启动了fb sdk,但您需要对用户进行身份验证 仅对于js身份验证,您需要使用FB.login method,但如果您的php负责对用户进行身份验证,那么您只需调用FB.getLoginStatus,如:
window.fbAsyncInit = function() {
FB.init({
appId: '<?php echo $facebook->getAppID() ?>',
cookie: true,
xfbml: true,
oauth: true
});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
FB.Event.subscribe('auth.logout', function(response) {
window.location.reload();
});
FB.getLoginStatus(function(response1) {
if (response1.status === 'connected') {
FB.api('/me/permissions', function(response2) {
console.log(response2);
});
}
else {
// user is not logged in or not authorized with the app.
// use a login button or FB.login
}
});
};
答案 1 :(得分:0)
即使用户未授权您的应用,您也在呼叫me/permissions
,
改为执行此操作,
<?php if ($user_profile): ?>
FB.api('/me/permissions', function (response) {
console.log(response);
});
<?php endif; ?>