4

我的网页上的代码:

<body class="popup">
    <div id="fb-root"></div>
    <script>
      window.fbAsyncInit = function() {
        // init the FB JS SDK
        FB.init({
          appId      : '476947702378530',                    // App ID from the app dashboard
          channelUrl : '//www.majorforms.com/fb_channel.php?_lang_id=1',// Channel file for x-domain comms
          status     : true,                                 // Check Facebook Login status
          xfbml      : true                                  // Look for social plugins on the page
        });

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

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

使用浏览器加载该页面后,我在 firebug 控制台中收到此错误:

 Application Error: There was a problem getting data for the application you requested. The application may not be valid, or there may be a temporary glitch. Please try again later.

我真的不明白。我没有真正的应用程序,我只是使用了 facebook(公司)帐户的标识符。我不想创建新的 facebook 应用程序,我只想使用特定 facebook 帐户的凭据。我怎么做?

4

2 回答 2

3

我不确定百分百,但您需要创建一个应用程序来使用 facebook sdk,因为在 FB.init 方法中,它显然要求提供 Facebook 应用程序 ID。

创建 Facebook 应用程序并不一定意味着您实际上在 facebook 上有一个应用程序,Facebook 开发人员页面上的应用程序配置屏幕有一个特定部分用于“使用 Facebook 登录的网站”,所以我认为这就是您应该采用的方式。

于 2013-05-09T11:46:43.193 回答
2

我发现我在测试我的应用程序时遇到了这个错误,因为我作为测试帐户用户登录了 Facebook。当我尝试访问实时环境时,它会生成该错误,因为它已经通过了开发人员用户的身份验证。错误消息有点笼统,并没有真正用黑白方式说明问题。

于 2018-11-10T06:21:57.323 回答