有没有办法跟踪Facebook评论插件中的按钮点击?例如,为了增加我自己的数据库中的注释计数器。这个插件有没有回调?提前感谢您的回答!
答案 0 :(得分:1)
您可以使用标记获取计数:
FB:评论计数
请参阅:Comments
<强>已更新强>
FB.Event.subscribe('comment.create', function(response)
{
//comment is created
});
FB.Event.subscribe('comment.remove', function(response)
{
//comment is removed
});