Created
February 1, 2012 18:43
-
-
Save andershaig/1718581 to your computer and use it in GitHub Desktop.
Request Fan Status
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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