如何向Facebook用户显示登录注销?

时间:2013-07-02 13:03:08

标签: javascript facebook facebook-graph-api facebook-javascript-sdk

我使用以下代码启用用户登录。它工作得很好,但问题是它显示网站的名称而不是登录 - 注销,因此用户无法退出。我应该如何更改它以使用户能够退出?基于吹嘘的评论,我添加了autologoutlink =“true”,现在singout是可见的,但是当用户登录时,写一个句子,因为以下插孔记录在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>

1 个答案:

答案 0 :(得分:0)

autologoutlink="true"

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

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

希望它有所帮助!