2

我正在使用以下代码使用户能够登录。它工作得很好,但问题是它显示网站的名称而不是登录 - 退出所以用户无法退出。我应该如何更改它以使用户能够退出?根据自爆评论,我添加了 autologoutlink="true" 并且现在 singout 是可见的,但是当用户登录时,它会写一个句子,因为下面的 jack 已登录 myproject(jack 是用户名,myproject 是我的项目的名称)

<html>
<head></head>
<body>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
  FB.init({
    appId      : 'YOUR_APP_ID', // App ID
    channelUrl : '//WWW.YOUR_DOMAIN.COM/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
  });


  FB.Event.subscribe('auth.authResponseChange', function(response) {
    if (response.status === 'connected') {
      testAPI();
    } else if (response.status === 'not_authorized') {
      FB.login();
    } else {
      FB.login();
    }
  });
  };

  (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>
4

1 回答 1

0

autologoutlink="true"

将此参数添加到您的fb:login-button

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

希望能帮助到你!

于 2013-07-08T14:02:55.950 回答