いいねボタンが表示されるタブを作成しました。みんなと同じように ;) ページを購読または購読解除した後、ページ全体を更新したいと思います。
-------編集------ インターネットで見つかったコードを追加してコードを修正しました。以下のコードは IE と Firefox で動作しますが、登録解除機能が動作しません... 修正方法をご存知ですか?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Document sans titre</title>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : 'My App ID', // App ID from the App Dashboard
status : true, // check the login status upon init?
cookie : true, // set sessions cookies to allow your server to access the session?
xfbml : true // parse XFBML tags on this page?
});
// Additional initialization code such as adding Event Listeners goes here
FB.Event.subscribe('edge.create',function () {
top.location = "http://www.google.fr";
});
FB.Event.unsubscribe('edge.create',function () {
top.location = "http://www.google.fr";
});
};
// 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/fr_FR/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
<div style="overflow:hidden; width:60px">
<div class="fb-like" data-href="my fan page" data-send="false" data-width="60" data-show-faces="false"></div>
</div>
</body>
</html>