Facebookの「いいね」ボタンを使用して、2つのイベントを購読しています。
edge.create-ユーザーが「いいね」ボタンをクリックしたとき
comment.create-ユーザーが表示されるフライアウトウィンドウにコメントを入力したとき
edge.createイベントが発生していますが、comment.createは発生していないようです。コードは次のとおりです。
window.fbAsyncInit = function() {
FB.init({
appId : '1111111111111', // App ID
channelUrl : '//www.xxx.com/channel.php', // Channel File
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(response) {
// user clicked facebook "like" button
alert("like");
}
);
FB.Event.subscribe('comment.create',
function(response) {
// user added comment to facebook like
alert("comment");
}
);
};
私は何かが足りないのですか?
ありがとう。-E