发布后捕获 Facebook 评论

Capture facebook comment after posting

我的项目有一个 Facebook 评论区。它工作正常,我只是想知道我是否可以在评论发布后立即捕获评论,以便将评论的内容保存在我的数据库中? 有没有办法捕获 'post comment' 事件?

查看边缘事件,特别是 comment.create:

FB.Event.subscribe('comment.create', comment_callback);

来源:https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/v2.6