Skip to content

Instantly share code, notes, and snippets.

@andershaig
Created February 1, 2012 18:43
Show Gist options
  • Save andershaig/1718581 to your computer and use it in GitHub Desktop.
Save andershaig/1718581 to your computer and use it in GitHub Desktop.
Request Fan Status
window.checkDoesLike = function() {
FB.api({ method: 'pages.isFan', page_id: '184484190795' }, function(resp) {
if (resp) {
Log.info('You like the Application.');
} else {
Log.error("You don't like the Application.");
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment