网站facebook登录导致问题

时间:2013-12-26 19:33:48

标签: javascript facebook

我刚尝试为我的网站登录fecebook并尝试在local..which位于项目文件夹名称'facebooklogin'中的localhost进行测试

<html>
<head></head>
<body>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
  FB.init({
    appId      : 'xxxxxxxxxxxxxxxx',
    status     : true, // check login status
    cookie     : true, // enable cookies to allow the server to access the session
    xfbml      : true  // parse XFBML
  });
  FB.Event.subscribe('auth.authResponseChange', function(response) {
    console.log(response);

    if (response.status === 'connected') {
      testAPI();
    } else if (response.status === 'not_authorized') {
      FB.login();
    } else {
      FB.login();
    }
  });
  };
  // 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));

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

<fb:login-button show-faces="true" width="200" max-rows="1"></fb:login-button>
</body>
</html>

但是它显示了控制台中的错误..什么是本地机器中这个问题的正确兑换方式......?

如果我想在本地测试它,App Domain会是什么?我尝试使用'localhost'或127.0.0.1,但它显示了像这样的警告

它必须与网站网址或Canvas网址匹配,或者网域必须是其中一个应用网域的子网域。

0 个答案:

没有答案