我使用facebook javaSDK为我的网站,我有一个奇怪的问题。 当我用“Internet Explorer”加载网站时,它总是正常运行。 当我用firefox加载网站时,它总是加载TWICE,当我使用chrome时,JSDK有时加载一次,有时根本不加载,给我错误“Uncaught ReferenceError:FB not defined”。 我尝试使用SDK的异步加载,但仍然是同样的问题。 顺便说一句我在firefox上有firebug,这可能是JSDK加载两次的原因吗?
这是加载jssdk的代码
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '108437552626598', // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
我试图使用FB.getlogin,我试图在Wordpress网站中整合facebook opengraph。在我完成加载主要内容后立即出我的脚本 这是代码
</div><!-- end #content -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
FB.getLoginStatus(function(response) {
if (response.status == 'connected') {
alert('in');
window.facebooklogin = 'true';
window.myValue = response.authResponse.accessToken;
window.myId = response.authResponse.userID;
$('.userimage img').attr('src','http://graph.facebook.com/' + window.myId + '/picture');
$.ajax({ url: 'http://ballvids.com/check/admin_checkuser.php',
data: {action: window.myId},
dataType:'json',
type: 'post',
success: function(output) {
if (output.message == 'true'){
$('.thumbnail img').attr('src',"http://ballvids.com/images/on2.png");
alert(window.myValue);
FB.api('/me/video.watches?video=<?php echo urlencode(get_permalink($post->ID));?>&access_token='+window.myValue,'post',function(response) {
if (!response || response.error) {
alert(response.error.message);
} else {
alert(response.id);
postID=response.id;
showStuff('removeTimeline');
}
});
}else{
$('.thumbnail img').attr('src',"http://ballvids.com/images/off2.png");
}
}
});
}else{
alert('inside2');
$('.thumbnail img').attr('src',"http://ballvids.com/images/off2.png");
window.facebooklogin = 'false';
}
},TRUE);
由于
答案 0 :(得分:1)
您必须在FBLoginStatus()
fbAsyncInit
window.fbAsyncInit = function() {
FB.init({
appId : APP_ID,
status : true,
cookie : true,
xfbml : true
});
FB.getLoginStatus( function(response) {
console.log(response);
}, true);
};
如果从FB.getLoginStatus()
返回的缓存对象出现问题,则必须传递第二个参数true
。
文档:https://developers.facebook.com/docs/reference/javascript/FB.getLoginStatus/
答案 1 :(得分:1)
当我使用firefox加载网站时,它总是加载TWICE,
尝试设置channel.html文件并在初始化时引用它。
当我使用chrome时,JSDK有时加载一次,有时根本不加载,给出错误“Uncaught ReferenceError:FB未定义”。
如果你对FB方法的调用包含在window.fbAsyncInit中是不可能的,因为如果没有加载SDK,就永远不会调用该回调。结论:你没有,但你将FB.getLoginStatus调用放在其他地方(你还没有在你的代码中显示我们)。