FacebookソーシャルコメントプラグインでコメントIDを取得するためにリスナーを使用しています。
// Additional initialization code here, this is where we listen to events
FB.Event.subscribe('comment.create',
function(response) {
alert('You commented in URL: ' + response.href + 'CommentID: ' + response.commentID);
// do an ajax call to server to store user,commentID,href info if you require
}
);
};
私の問題は、返されたIDがコメントボックスIDであり、コメントのIDが必要なことです。どうすれば入手できますか?