我正在使用标题说我正在使用javascript SDK进行facebook登录。 它适用于除IE的某些版本之外的所有浏览器。
它在我的本地IE11和browserstack.com上的IE7上不起作用(但在IE11上工作)。
这是我的代码
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>Facebook Login JavaScript Example</title>
<meta charset="UTF-8">
</head>
<body>
<script>
// Load the SDK asynchronously
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'INSERT SOME APP ID',
cookie : true, // enable cookies to allow the server to access
status : true, // the session
xfbml : true, // parse social plugins on this page
version : 'v2.1' // use version 2.1
});
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
alert('authorized');
} else if (response.status === 'not_authorized') {
alert('logged in but not authorized');
} else {
alert('logged off');
}
});
};
</script>
</body>
</html>
它的文档中有很多样本。 无论我做什么,fbAsyncInit都不会被调用。
由于
答案 0 :(得分:0)
您是否在本地计算机上将html作为文件打开?
我以前遇到过这个问题。罪魁祸首是协议相对网址
js.src = "//connect.facebook.net/en_US/sdk.js";
如果您从file:///home/me/mycoolwebpage.html调用它,则脚本将不会加载,因为它使用相同的协议并查找不存在的file://connect.facebook.net/en_US/sdk.js
。
当它在您的本地计算机上时,请使用完整的http://connect.facebook.net/en_US/sdk.js
,然后在上传时将其切换为//connect.facebook.net/en_US/sdk.js
。