I have a facebook likebox on my site (not an iframe app) where I need to create gated content. I understand the FB.Event.subscribe using edge.create and edge.remove but what I really need is to know if a user already likes the page not simply if they became a fan or stopped being a fan. Is there anything I can see as a callback maybe from the xfbml.render?

I am limited (by my company) to using front end languages, meaning javascript is really my only option at this point. I would gladly use the "signed_request" option but best I can tell that seems to be only accessible via server side languages.

Is there any way for me to determine whether someone already "Likes" a page using only javascript?

link|improve this question
feedback

2 Answers

Yes, you can do this completely in javascript using the FB Javascript sdk.

function RunLikeCheck() {
var likeId = 'yourLikeIdHere';
    FB.api({
        method: 'fql.query',
        query: 'SELECT uid FROM page_fan WHERE page_id = ' + likeId + ' AND uid = me()'
    },
                function (response) {

                    if (response.length == 1) {
                        $("#HasLiked").val('true');
                        $('#frmAllow').submit();
                    }
                    else {
                        $("#HasLiked").val('false');
                        $('#frmAllow').submit();
                    }
                }
            );
}

Now this is assuming that you already have the user logged in and have the correct permissions.

link|improve this answer
feedback

HI Joey,

Where do you get the

var likeId = 'yourLikeIdHere';

I have a similar situation where I want to only show content for people who have liked the page. If they haven't liked the page, show them something else. Tried a bunch of different ways and nothing seems to work

Below is the code. For appId : 'XXXXXXXXXXXXXX', I am putting in my app id.

Any ideas?

   <!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
  FB.init({
    appId  : 'XXXXXXXXXXXXXX',
    status : true, // check login status
    cookie : true, // enable cookies to allow the server to access the session
    xfbml  : true  // parse XFBML
  });

function RunLikeCheck() {
var likeId = '5cae9883667357453b8fc5f8742b66d7';
    FB.api({
        method: 'fql.query',
        query: 'SELECT uid FROM page_fan WHERE page_id = ' + likeId + ' AND uid = me()'
    },
                function (response) {

                    if (response.length == 1) {
                        $("#HasLiked").css('display', '');
                    }
                    else {
                        $("#HasNotLiked").css('display', 'none');

                    }
                }
            );
}


</script>

<div id="HasLiked" style="display:none;">They Like this</div>
<div id="HasNotLiked" style="display:none;">They don't like</div>
</body>
</html>
link|improve this answer
Depends on the page. Most pages have an ID associated with it. For example, facebook.com/cocacola has a likeID of 40796308305. Just inspect (via Firebug) the like button on the specific page and you will see it buried in the Javascript. Hope this helps! – Joey Schluchter Jun 2 '11 at 19:13
feedback

Your Answer

 
or
required, but never shown

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