ページで facebook javascript SDK を使用して、ユーザーがファン ページの閲覧中にそのページに「いいね」をしたかどうかを検出できます。次に、AJAXを使用してファイル/データベースに保存できます
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
<script>
window.fbAsyncInit = function () {
FB.init({
appId: 'INSERT APP ID',
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
oauth: true // enable OAuth 2.0
});
//Additional
FB.Event.subscribe('edge.create', function (response) {
alert('Put AJAX Code Here');
});
};
// Load the SDK Asynchronously
(function (d) {
var js, id = 'facebook-jssdk',
ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {
return;
}
js = d.createElement('script');
js.id = id;
js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
これが役に立てば幸いです...
http://www.skruffymedia.com/blog/creating-a-facebook-like-gate-competition/