I am trying to create a Facebook iFrame app. The app should first show an image and if the user likes the page, he will get access to some content.

I use RoR, therefore I can't use the Facebook PhP SDK.

Here is my iFrame HTML when the user has not liked the page:

<!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>

And, if the user has liked the page:

<!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>

link|improve this question

Can you use the FB JS API ? – dwarfy Jun 9 '11 at 15:51
Yes i know th FB JS SDK - But i dont know how to use it – Rails beginner Jun 9 '11 at 21:05
2 other questions before I give it a shot : Is it really sensitive information ? Because one approach involve showing one div with js if the user like the page and showing another div if the user don't like the page (both divs being hidden in the page at start) so somebody could unhide them with firebug or something else and see your content. Another approach involves fetching the content of the two divs by ajax which is more "secure". Also what JS library do you use I'm a jquery'ist so can I use jquery ? – dwarfy Jun 10 '11 at 5:57
I am also using Jquery – Rails beginner Jun 10 '11 at 7:54
feedback

6 Answers

up vote 34 down vote accepted
+50

Hi So as promised here is my answer using only javascript :

The content of the BODY of the page :

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

The 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
}

And finally the 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
      }
    });

});

So what what does it do ?

First it logins to FB (if you already have the USER ID, and you are sure your user is already logged in facebook, you can bypass the login stuff and replace response.session.uid with YOUR_USER_ID (from your rails app for example)

After that it makes a FQL query on the page_fan table, and the meaning is that if the user is a fan of the page, it returns the user id and otherwise it returns an empty array, after that and depending on the results its show a div or the other.

Also there is a working demo here : http://jsfiddle.net/dwarfy/X4bn6/

It's using the coca-cola page as an example, try it go and like/unlike the coca cola page and run it again ...

Finally some related docs :

FQL page_fan table

FBJS FB.Data.query

Don't hesitate if you have any question ..

Cheers

UPDATE 2

As stated by somebody, jQuery is required for the javascript version to work BUT you could easily remove it (it's only used for the document.ready and show/hide).

For the document.ready, you could wrap your code in a function and use body onload="your_function" or something more complicated like here : Javascript - How to detect if document has loaded (IE 7/Firefox 3) so that we replace document ready.

And for the show and hide stuff you could use something like : document.getElementById("container_like").style.display = "none" or "block" and for more reliable cross browser techniques see here : http://www.webmasterworld.com/forum91/441.htm

But jQuery is so easy :)

UPDATE

Relatively to the comment I posted here below here is some ruby code to decode the "signed_request" that facebook POST to your CANVAS URL when it fetches it for display inside facebook.

In your action controller :

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

And then its a matter of checking the decoded request and display one page or another .. (Not sure about this one, I'm not comfortable with ruby)

decoded_request['page']['liked']

And here is the related Canvas Class (from 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
link|improve this answer
1  
Actually while it's still interesting to see how to do this in javascript, as you are in a iframe app, you SHOULD consider decoding the signed_request that facebook sends to your page as a POST parameter when it fetches it to display in the iframe. – dwarfy Jun 11 '11 at 7:01
See my UPDATE ... It should do the trick (probably a better solution than the javascript) – dwarfy Jun 11 '11 at 7:27
On the JS side when I tried your demo it pops up with the request for permission box. Is there a way around that? I'm trying to do this on a website to see if they like our fan page and it not show some different content but if there is that pop up asking for permission then they will probably just leave the site. – kel Jun 16 '11 at 1:22
@kel : I'm sorry to say that but there is no way to bypass the permissions stuff. I mean the users have to accept it ONCE. If your user are already logged on facebook through your site then you can use their access_token without doing the JS login, otherwise NOT. Are user already logged on facebook through your site ? – dwarfy Jun 16 '11 at 7:41
@dwarfy No the don't login to my site. How is it that the Facebook like box know if you like a page or not? Is it just because it's facebook? – kel Jun 17 '11 at 3:11
show 7 more comments
feedback

You need to write a little PHP code. When user first click tab you can check is he like the page or not. Below is the sample code

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
}
link|improve this answer
Problerly a good solution for PHP but have a RoR app. – Rails beginner Jun 8 '11 at 17:11
I am not expert of ROR though you can found something similar in ROR API for facebook as if they are providing it for PHP they definitely for ROR too. – mani Jun 8 '11 at 21:45
1  
Do you see the "php" tag somewhere ? The guy want something in ruby or javascript .. – dwarfy Jun 11 '11 at 7:25
1  
@mani, I received a lot of -1 from sick men like me and it made me read the questions and tag more carefully before answering ... sorry if you felt hurt tough – dwarfy Jun 14 '11 at 8:14
1  
Even though it was slightly off topic from the OP's question I am glad the information was here as it was helpful for my situation. – Kenneth Jun 16 '11 at 5:25
show 4 more comments
feedback

There are some changes required to JavaScript code to handle rendering based on user liking or not liking the page mandated by Facebook moving to Auth2.0 authorization.

Change is fairly simple:-

sessions has to be replaced by authResponse and uid by userID

Moreover given the requirement of the code and some issues faced by people(including me) in general with FB.login, use of FB.getLoginStatus is a better alternative. It saves query to FB in case user is logged in and has authenticated your app.

Refer to Response and Sessions Object section for info on how this might save query to FB server. http://developers.facebook.com/docs/reference/javascript/FB.getLoginStatus/

Issues with FB.login and its fixes using FB.getLoginStatus. http://forum.developers.facebook.net/viewtopic.php?id=70634

Here is the code posted above with changes which worked for me.

$(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
        }
    });

});
link|improve this answer
feedback

There is an article here that describes your problem

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>

Hope it gives you some idea on how to do it :-)

link|improve this answer
But FBML is deprecated – Rails beginner Jun 5 '11 at 23:02
I have tryed it does not work – Rails beginner Jun 6 '11 at 0:41
Ah, then you need to do it through iFrame or Fan Gate when you created you site. You can read about it marismith.com/iframes-facebook-app-fan-gate-wildfire here, just look down on the site. – Modatheus Jun 6 '11 at 10:30
It doesnt work in a iframe app – dwarfy Jun 11 '11 at 7:20
feedback

Its working example http://jsfiddle.net/alexgarry/qdfL6/4/ , fork of this comment http://stackoverflow.com/a/6314568/1190920 . Used method FB.api (JavaScript SDK), instead of FB.Data.query, that was deprecated. Or used Graph API http://jsfiddle.net/alexgarry/qdfL6/5/

link|improve this answer
feedback
<!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;`enter code here`
    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
}
</style>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){

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

          var user_id = response.session.uid;
          var page_id = "PAGE_ID"; //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
      }
    });

});
</script>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
</head>
<body>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
  FB.init({
    appId  : 'APP_ID',
    status : true, 
    cookie : true, 
    xfbml  : true  
  });
</script>
<div id="container_notlike"> YOU DONT LIKE </div>
<div id="container_like"> YOU LIKE </div>
</body>
</html>
link|improve this answer
3  
did you copy-paste from my answer ? where is the difference ? – dwarfy Aug 8 '11 at 6:38
feedback

protected by Community Mar 31 at 0:15

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.