5

我使用这段代码来准备 FaceBook API 的使用:

(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_GB/all.js#xfbml=1";
    fjs.parentNode.insertBefore(js, fjs);
} (document, 'script', 'facebook-jssdk'));

但是,在文档加载时,我收到以下错误:

FB.getLoginStatus() called before calling FB.init().

我不明白这个消息。我搜索了这个问题并找到了一些论坛主题,但不幸的是它们根本没有帮助。我决定在这里发布一个关于这个问题的问题,因为我无法解决它,因为我对 Facebook API 不熟悉。抱歉,如果我的问题对任何人来说都太简单了,并提前感谢您的任何回答。

4

2 回答 2

5

我有相同的 Facebook 日志

 ***FB.getLoginStatus() called before calling FB.init().***

文件加载时。我发现#xfbml=1最后

js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1";

犯这个错误。删除后#xfbml=1就好了!

于 2013-03-06T05:22:42.147 回答
0
window.fbAsyncInit = function () {
    // init the FB JS SDK
    FB.init({
        appId: MS.FBAppID, // App ID from the App Dashboard
        //channelUrl: '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File for x-domain communication
        status: true, // check the login status upon init?
        cookie: true, // set sessions cookies to allow your server to access the session?
        xfbml: true  // parse XFBML tags on this page?
    });

    // Additional initialization code such as adding Event Listeners goes here

};

// Load the SDK's source Asynchronously
// Note that the debug version is being actively developed and might 
// contain some type checks that are overly strict. 
// Please report such bugs using the bugs tool.
(function (d, debug) {
    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" + (debug ? "/debug" : "") + ".js";
    ref.parentNode.insertBefore(js, ref);
} (document, /*debug*/false));

我必须使用为此应用程序创建的 Facebook AppID 作为 AppID,并且我必须确保正确定义了域。

于 2012-12-20T21:36:14.243 回答