我为粉丝页面制作一个iframe应用程序,问题是如果用户点击facebook顶部栏中的LIKE,则会重新加载应用程序iframe页面,但如果用户点击同一位置的UNLIKE则不刷新
我的应用程序检查用户是否喜欢或不喜欢粉丝页面,如果第一次不点击LIKE按钮就不能继续(类似按钮打算在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));
答案 0 :(得分:1)
使用方法'FB.Event.subscribe'
的Javascript SDK。事件是:
edge.create
- 喜欢
edge.remove
- 与
了解更多: https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/