我正在使用侦听器在 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。我如何得到它?