web-dev-qa-db-ja.com

Facebookユーザーがページを高く評価してコンテンツを表示したかどうかを確認する方法

Facebook iFrameアプリを作成しようとしています。アプリは最初に画像を表示する必要があり、ユーザーがページを気に入った場合、ユーザーはコンテンツにアクセスできます。

RoRを使用しているため、Facebook PhP SDKを使用できません。

ユーザーがページを高く評価していない場合のiFrame HTMLは次のとおりです。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<style type="text/css">
body {
width:520px;
margin:0; padding:0; border:0;
font-family: verdana;
background:url(repeat.png) repeat;
margin-bottom:10px;
}
p, h1 {width:450px; margin-left:50px; color:#FFF;}
p {font-size:11px;}
</style>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
</head>
<body>
<div id="container">
<img src="welcome.png" alt="Frontimg">
</div>

また、ユーザーがページを高く評価した場合:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<style type="text/css">
body {
width:520px;
margin:0; padding:0; border:0;
font-family: verdana;
background:url(repeat.png) repeat;
margin-bottom:10px;
}
p, h1 {width:450px; margin-left:50px; color:#FFF;}
p {font-size:11px;}
</style>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
</head>
<body>
<div id="container">
<img src="member.png" alt="Frontimg">
<p>You liked this page</p>
53
Rails beginner

UPDATE 21/11/2012@ALL:動作を改善し、Chris JacobとFBのベストプラクティスからの発言を考慮に入れるように例を更新しました。動作例をご覧ください- ここ


こんにちはだからここで約束したようにjavascriptのみを使用して私の答えです:

ページのBODYのコンテンツ:

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
  FB.init({
    appId  : 'YOUR APP ID',
    status : true, 
    cookie : true, 
    xfbml  : true  
  });
</script>

<div id="container_notlike">
YOU DONT LIKE
</div>

<div id="container_like">
YOU LIKE
</div>

CSS:

body {
width:520px;
margin:0; padding:0; border:0;
font-family: verdana;
background:url(repeat.png) repeat;
margin-bottom:10px;
}
p, h1 {width:450px; margin-left:50px; color:#FFF;}
p {font-size:11px;}

#container_notlike, #container_like {
    display:none
}

そして最後に、javascript:

$(document).ready(function(){

    FB.login(function(response) {
      if (response.session) {

          var user_id = response.session.uid;
          var page_id = "40796308305"; //coca cola
          var fql_query = "SELECT uid FROM page_fan WHERE page_id = "+page_id+"and uid="+user_id;
          var the_query = FB.Data.query(fql_query);

          the_query.wait(function(rows) {

              if (rows.length == 1 && rows[0].uid == user_id) {
                  $("#container_like").show();

                  //here you could also do some ajax and get the content for a "liker" instead of simply showing a hidden div in the page.

              } else {
                  $("#container_notlike").show();
                  //and here you could get the content for a non liker in ajax...
              }
          });


      } else {
        // user is not logged in
      }
    });

});

それで、それは何をしますか?

まず、FBにログインします(既にユーザーIDを持っている場合、ユーザーが既にFacebookにログインしていることがわかっている場合は、ログインをバイパスし、response.session.uidをYOUR_USER_IDに置き換えます(たとえば、Railsアプリから)

その後、page_fanテーブルでFQLクエリを作成します。意味は、ユーザーがページのファンである場合、ユーザーIDを返し、それ以外の場合は空の配列を返します。その後、結果に応じて、 divまたはその他。

また、ここに実用的なデモがあります: http://jsfiddle.net/dwarfy/X4bn6/

例としてcoca-colaページを使用しています。試してみて、like/unlike the coca cola page を実行し、もう一度実行してください...

最後に、いくつかの関連ドキュメント:

FQL page_fan table

FBJS FB.Data.query

質問があれば遠慮なく..

乾杯

更新2

誰かが述べたように、jQueryはjavascriptバージョンが機能するために必要ですが、簡単に削除できます(document.readyとshow/hideにのみ使用されます)。

Document.readyの場合、コードを関数でラップし、body onload="your_function"または以下のようなより複雑なものを使用できます。 Javascript-ドキュメントが読み込まれたかどうかを検出する方法(IE 7/Firefox 3) 文書を交換してください。

また、表示および非表示の場合は、document.getElementById("container_like").style.display = "none" or "block"のようなものを使用できます。より信頼性の高いクロスブラウザーテクニックについては、こちらを参照してください。 http://www.webmasterworld.com/forum91/441.htm =

しかし、jQueryはとても簡単です:)

[〜#〜] update [〜#〜]

以下に私がここに投稿したコメントに関連して、facebook Rubyをfacebook内に表示するためにフェッチする際に、そのfacebook POSTをデコードするコード<= Ruby >> =があります。

アクションコントローラーで:

decoded_request = Canvas.parse_signed_request(params[:signed_request])

そして、デコードされたリクエストをチェックし、1ページまたは別のページを表示するという問題..(このリクエストについてはよくわかりませんが、Rubyには慣れていません)

decoded_request['page']['liked']

次に、関連するCanvasクラスを示します( fbgraph Ruby library から):

 class Canvas

    class << self
      def parse_signed_request(secret_id,request)
        encoded_sig, payload = request.split('.', 2)
        sig = ""
        urldecode64(encoded_sig).each_byte { |b|
          sig << "%02x" % b
        }
        data = JSON.parse(urldecode64(payload))
          if data['algorithm'].to_s.upcase != 'HMAC-SHA256'
          raise "Bad signature algorithm: %s" % data['algorithm']
        end
        expected_sig = OpenSSL::HMAC.hexdigest('sha256', secret_id, payload)
        if expected_sig != sig
          raise "Bad signature"
        end
        data
      end

      private

      def urldecode64(str)
        encoded_str = str.gsub('-','+').gsub('_','/')
        encoded_str += '=' while !(encoded_str.size % 4).zero?
        Base64.decode64(encoded_str)
      end
    end  

 end
80
dwarfy

少しPHPコードを書く必要があります。ユーザーが最初にタブをクリックすると、ページが好きかどうかを確認できます。以下にサンプルコードを示します。

include_once("facebook.php");

    // Create our Application instance.
    $facebook = new Facebook(array(
      'appId'  => FACEBOOK_APP_ID,
      'secret' => FACEBOOK_SECRET,
      'cookie' => true,
    ));

$signed_request = $facebook->getSignedRequest();

// Return you the Page like status
$like_status = $signed_request["page"]["liked"];

if($like_status)
{
    echo 'User Liked the page';
    // Place some content you wanna show to user

}else{
    echo 'User do not liked the page';
    // Place some content that encourage user to like the page
}
19
Inam Abbas

this answer の分岐である実例があります:

$(document).ready(function(){
    FB.login(function(response) {
        if (response.status == 'connected') {
            var user_id = response.authResponse.userID;
            var page_id = "40796308305"; // coca cola page https://www.facebook.com/cocacola
            var fql_query = "SELECT uid FROM page_fan WHERE page_id="+page_id+" and uid="+user_id;

            FB.api({
                method: 'fql.query',
                query: fql_query
            },
            function(response){
                if (response[0]) {
                    $("#container_like").show();
                } else {
                    $("#container_notlike").show();
                }
            }
            );    
        } else {
        // user is not logged in
        }
    });
});

非推奨のFB.Data.queryの代わりに、FB.apiメソッド(JavaScript SDK)を使用しました。または、次の例のようにGraph APIを使用できます。

$(document).ready(function() {
    FB.login(function(response) {
        if (response.status == 'connected') {
            var user_id = response.authResponse.userID;
            var page_id = "40796308305"; // coca cola page https://www.facebook.com/cocacola
            var fql_query = "SELECT uid FROM page_fan WHERE page_id=" + page_id + " and uid=" + user_id;

            FB.api('/me/likes/'+page_id, function(response) {
                if (response.data[0]) {
                    $("#container_like").show();
                } else {
                    $("#container_notlike").show();
                }
            });
        } else {
            // user is not logged in
        }
    });
});​
5
Alexey Khrenov

FacebookがAuth2.0承認に移行することを義務付けられているページを好むまたは好まないユーザーに基づいてレンダリングを処理するには、JavaScriptコードにいくつかの変更が必要です。

変更は非常に簡単です:-

セッションはauthResponseに、uidはuserIDに置き換える必要があります

さらに、コードの要件と、一般的にFB.loginで人々(私を含む)が直面するいくつかの問題を考えると、FB.getLoginStatusの使用がより良い代替手段です。ユーザーがログインしてアプリを認証した場合に、クエリをFBに保存します。

これがクエリをFBサーバーに保存する方法については、「応答およびセッションオブジェクト」セクションを参照してください。 http://developers.facebook.com/docs/reference/javascript/FB.getLoginStatus/

FB.loginの問題とFB.getLoginStatusを使用した修正。 http://forum.developers.facebook.net/viewtopic.php?id=70634

上に投稿したコードは、私にとって有効な変更を加えたものです。

$(document).ready(function(){
    FB.getLoginStatus(function(response) {
        if (response.status == 'connected') {
            var user_id = response.authResponse.userID;
            var page_id = "40796308305"; //coca cola
            var fql_query = "SELECT uid FROM page_fan WHERE page_id =" + page_id + " and uid=" + user_id;
            var the_query = FB.Data.query(fql_query);

            the_query.wait(function(rows) {

                if (rows.length == 1 && rows[0].uid == user_id) {
                    $("#container_like").show();

                    //here you could also do some ajax and get the content for a "liker" instead of simply showing a hidden div in the page.

                } else {
                    $("#container_notlike").show();
                    //and here you could get the content for a non liker in ajax...
                }
            });
        } else {
            // user is not logged in
        }
    });

});
2
karora

Javascript SDKでは、以下のようにコードを変更できます。これはFB.init呼び出しの後に追加する必要があります。

     // Additional initialization code such as adding Event Listeners goes here
FB.getLoginStatus(function(response) {
      if (response.status === 'connected') {
        // the user is logged in and has authenticated your
        // app, and response.authResponse supplies
        // the user's ID, a valid access token, a signed
        // request, and the time the access token 
        // and signed request each expire
        var uid = response.authResponse.userID;
        var accessToken = response.authResponse.accessToken;
        alert('we are fine');
      } else if (response.status === 'not_authorized') {
        // the user is logged in to Facebook, 
        // but has not authenticated your app
        alert('please like us');
         $("#container_notlike").show();
      } else {
        // the user isn't logged in to Facebook.
        alert('please login');
      }
     });

FB.Event.subscribe('Edge.create',
function(response) {
    alert('You liked the URL: ' + response);
      $("#container_like").show();
}
1
Sofia Khwaja

あなたの問題を説明する記事がここにあります

http://www.hyperarts.com/blog/facebook-fan-pages-content-for-fans-only-static-fbml/

    <fb:visible-to-connection>
       Fans will see this content.
       <fb:else>
           Non-fans will see this content.
       </fb:else>
    </fb:visible-to-connection>
0
Modatheus