ファンページ用のiframeアプリケーションを作成します。問題は、ユーザーがFacebookのトップバーでLIKEをクリックすると、アプリケーションのiframeページがリロードされますが、ユーザーが同じ位置でUNLIKEをクリックしても更新されないことです。
私のアプリケーションは、ユーザーがファンページに「いいね」または「いいね」ではないかどうかを確認し、最初に「いいね」ボタンをクリックしないと続行できません(「いいね」ボタンは、iframeアプリケーションの外にあるトップバーのボタンを意図しています)
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo $app_id; ?>', // App ID
status : true, // check login status
channelUrl : '//www. domain .it/<?php echo $sub_dir_app; ?>/cf.php', // Channel File
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Event.subscribe('edge.remove', function(response) {
//top.location.reload();
alert('ok NOLIKE');
});
FB.Event.subscribe('edge.create', function(response) {
//top.location.reload();
alert('ok LIKE');
});
};
// 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/it_IT/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));