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>