我通过复制https://developers.facebook.com/docs/plugins/comments/
中的代码了解了构建评论插件的方法我想知道有什么方法可以在用户发送Facebook评论时检索评论。即发送评论以存储在Facebook数据库和我的本地数据库中。
答案 0 :(得分:1)
在this link阅读后,在常见问题解答部分:
我如何知道有人在我的网站上发表评论?
您可以通过FB.Event.subscribe订阅Facebook SDK for JavaScript中的'comment.create'和'comment.remove'事件。
代码:
// In your HTML, include the comments plugin
<div
class="fb-comments"
data-href="http://url.to.your-page/page.html"
data-numposts="5"
data-colorscheme="light">
</div>
// In your onload method
FB.Event.subscribe('comment.create', comment_callback);
FB.Event.subscribe('comment.remove', comment_callback);
// In your JavaScript
var comment_callback = function(response) {
console.log("comment_callback");
console.log(response);
}