我使用这个脚本,但只有当我使用自己的Facebook帐户登录时才能使用!
它不适用于任何其他帐户,是否有人知道该问题,或者是一个简单的脚本,如果用户喜欢该页面,则可以阅读。
当页面已被喜欢时,将重定向到另一页
当页面不喜欢时,首先喜欢另一页面。
<fb:like href="http://www.facebook.com/pages/JB-online/120553881462976" send="false" width="200" show_faces="false" font=""></fb:like>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({appId: '225151454290498', status: true, cookie: true, xfbml: true});
FB.Canvas.setSize({ width: 520, height: 1500 });
FB.Event.subscribe('auth.authResponseChange', function(response) {
FB.api('/me/likes/120553881462976',
function(response) {
{
alert("liked the page");
}
if(response.data[0])
{
location.href = 'http://google.nl';
}
else
{
alert("noo liked yet");
}
}
);
});
};
//Load the SDK asynchronously
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>