-1

我正在尝试使用 Facebook 登录帮助指南来整理一个脚本来检查用户是否已登录。我根据本指南整理了以下内容。

<div id="fb-root"></div>
<script>
  // Additional JS functions here
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '303594953085775', // App ID
      channelUrl : 'http://mysite.com/pages/account/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional init code here
    FB.getLoginStatus(function(response) {
    if (response.status === 'connected') {
        // connected
    } else if (response.status === 'not_authorized') {
        // not_authorized
        login();
    } else {
        // not_logged_in
        login();
    }
    });
    };

  };

  function login() {
    FB.login(function(response) {
        if (response.authResponse) {
            // connected
            testAPI();
        } else {
            // cancelled
        }
    });
    }

    function testAPI() {
    console.log('Welcome!  Fetching your information.... ');
    FB.api('/me', function(response) {
        console.log('Good to see you, ' + response.name + '.');
    });
    }

  // 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>

我不知道我做错了什么,因为我完全复制了它。我已经将它复制了四次,尽管它与 Facebook 网站上写的完全一样,但它仍然出现错误。

我收到两个错误:

Uncaught SyntaxError: Unexpected token }

Uncaught SyntaxError: Unexpected token .

我对这种复杂的 JavaScript 一无所知,因为我只知道如何做一些基本的调用和一些东西,这让我现在想把自己扔下大楼。

谁能告诉我为什么会出错?有没有什么地方可以让我掌握整个正确的脚本并替换我的应用程序 ID 和域,而不必通过这个愚蠢的 Facebook 指南?

4

2 回答 2

1

您的代码中存在语法错误:

window.fbAsyncInit = function() {
  FB.init({
    appId      : '303594953085775', // App ID
    channelUrl : 'http://mysite.com/pages/account/channel.html', // Channel File
    status     : true, // check login status
    cookie     : true, // enable cookies to allow the server to access the session
    xfbml      : true  // parse XFBML
  });

  // Additional init code here
  FB.getLoginStatus(function(response) {
  if (response.status === 'connected') {
      // connected
  } else if (response.status === 'not_authorized') {
      // not_authorized
      login();
  } else {
      // not_logged_in
      login();
  }
  });

};
};        **// REMOVE THIS- This one is extra**

您可以使用 Notepad++ 或任何其他好的编辑器来避免此类错误:)

于 2012-12-18T13:27:39.397 回答
0

我遇到了同样的问题,这是由直接复制和粘贴代码引起的,它以某种方式在其中放置了一些奇怪的字符。我通过物理重写来修复它,而不是直接复制和粘贴。

于 2013-10-15T18:56:03.523 回答