我为 Facebook 创建了一个应用程序,我正在使用 Facebook PHP SDK 和 Javascript SDK。
我的问题是,在我单击登录按钮后,Firefox 不会重新加载页面,而是会发出消息以确认重新加载操作。确认没有任何反应后,我必须手动重新加载页面。与 Internet Explorer 相同的问题。只有 Chrome 可以正常工作。 我在 google 上进行了大量搜索,问题的根源是 window.location.reload() 函数。
我试图在 settimeout 中包装函数(见下文),但它不起作用。
我的基本代码是稍微改变的Facebook 示例,来自:https ://github.com/facebook/facebook-php-sdk/blob/master/examples/with_js_sdk.php
--->> 我想知道为什么 Facebook 的人上传的代码在 Firefox 和 IE 上肯定不能正常运行。
我使用的代码是:
<?php
include_once($_SERVER['DOCUMENT_ROOT']."/config/config.php");
include_once($_SERVER['DOCUMENT_ROOT']."/config/facebook_config.php");
include($_SERVER['DOCUMENT_ROOT']."/config/connection.php");
// 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) { ?>
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) {
setTimeout('window.location.reload()',0);
});
FB.Event.subscribe('auth.logout', function(response) {
setTimeout('window.location.reload()',0);
});
};
(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>
Firefox 和 Internet Explorer 仍然存在“重新加载”问题