1

我在我的网站上使用 facebook javaSDK,但我遇到了一个奇怪的问题。当我使用“Internet Explorer”加载网站时,它总是运行良好。当我用 firefox 加载网站时,它总是加载两次,而当我使用 chrome 时,JSDK 有时会加载一次,有时根本不加载,给我错误“未捕获的 ReferenceError:FB 未定义”。我尝试对 SDK 使用异步加载,但仍然是同样的问题。顺便说一句,我在 Firefox 上有萤火虫,这可能是 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';
}

},真的);

谢谢

4

2 回答 2

1

当我用 Firefox 加载网站时,它总是加载两次,

尝试设置一个 channel.html 文件并在初始化时引用它。

当我使用 chrome 时,JSDK 有时会加载一次,有时根本不加载,给我错误“未捕获的 ReferenceError:FB 未定义”。

如果您将对 FB 方法的调用封装到 window.fbAsyncInit 中,这是不可能的,因为如果未加载 SDK,则永远不会调用该回调。结论:您没有,而是将 FB.getLoginStatus 调用放在其他地方(您还没有在代码中向我们展示)。

于 2012-06-13T08:29:06.453 回答
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/

于 2012-06-13T06:02:36.733 回答