喜欢用facebook登录时的facebook页面

时间:2013-07-23 17:29:51

标签: facebook facebook-graph-api facebook-like

我在我的网页上使用facebook登录。 首次登录时,Facebook登录应用程序会要求获取用户数据的许可。

有任何方法可以改善这个以获得喜欢我的Facebook页面的许可吗? 用户点击后,他也会喜欢我的Facebook页面。

编辑: 我的目标是强迫人们喜欢我的Facebook页面,如果他们想用Facebook帐户登录我的页面(不是定期注册)。我肯定会要求允许不违反使用条款。但如果他们点击登录并给予许可他们也会喜欢我的fb页面会很好。因此,Facebook登录等不会分开。

2 个答案:

答案 0 :(得分:1)

当然,您只需将范围 user_likes 添加到Facebook登录按钮。

您可以阅读有关facebook登录按钮和范围属性here

的更多信息

既然您可以访问用户喜欢的内容,那么您可以检查用户是否喜欢您的网页,如果是,那么只需将用户重定向到您的网站,如果没有,只需提示他喜欢您的网页,然后才能访问你网站的其余部分。

这里有一些代码,使用Facebook Javascript SDK

<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'YOUR_APP_ID', // App ID
      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.statusChange', handleStatusChange);
    FB.Event.subscribe('edge.create', like);
  };

  // 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/pt_PT/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
</script>

然后在页面底部,放置这段javascript代码

<script>
    //this function is fired whenever the user presses the like button
    function like(response) {    
        if(response="https://www.facebook.com/YOUR_PAGE_USERNAME")
            //do something when the user likes your page, like redirect him, or something like that
    }
    //this function is fired everytime the page is loaded
    function handleStatusChange(response) {
        if (response.authResponse) {
            updateUserInfo(response);
        }
    }
    //this function is called by the function handleStatusChange and it checks everytime the page is loaded if the user already likes your page
    function updateUserInfo(response) {
        token = response.authResponse.accessToken;
        FB.api('/me/likes/YOUR_PAGE_ID', function(response) {
            if(response.data.length){
             //the user already likes your page 
            }
            else{
                //the user doesn'y like your page, or the user hasn't granted permission for you to access his likes. show him the like button
            }
        }, {access_token: token});

   }
</script>

答案 1 :(得分:0)

您是否尝试过使用Facebook Like Box?如果是这样,你能解释为什么它不适合你的需求吗?