Skip to content

Instantly share code, notes, and snippets.

@timonweb
Created June 4, 2012 10:45
Show Gist options
  • Select an option

  • Save timonweb/2867715 to your computer and use it in GitHub Desktop.

Select an option

Save timonweb/2867715 to your computer and use it in GitHub Desktop.
Check if user is a fan of a facebook page
FB.api("me/likes/SOME_ID", function(response) {
if ( response.data.length === 1 ) { //there should only be a single value inside "data"
console.log('You like it');
} else {
console.log("You don't like it");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment