我为Facebook创建了一个应用程序,我正在使用带有Javascript SDK的Facebook PHP 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仍然存在“重新加载”问题