Likeボタンのユーザークリックを処理したいと思います。生成されたコードをLike ボタンのドキュメント ページからページに正確にコピーしましたが、 Like ボタンをクリックしても何も起こりません。
この問題に関連するすべての質問を読みましたが、何も機能しません。この質問が何度も出されたことは知っていますが、この問題は私を夢中にさせています。
私はFirefoxを使用しています。
ここに私の完全なHTMLがあります:
<!doctype html>
<html xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta charset="utf-8">
<title>Facebook Like Button</title>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function () {
FB.init({
appId: 'MY_APP_ID', // App ID
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
FB.Event.subscribe('edge.create', function () {
alert('Like button is clicked');
});
};
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=MY_APP_ID";
fjs.parentNode.insertBefore(js, fjs);
} (document, 'script', 'facebook-jssdk'));
</script>
<fb:like href="http://www.bluelink.ws/" send="true" layout="button_count" width="450" show_faces="true"></fb:like>
</body>
</html>