我正在使用听众在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。我怎么得到它?
答案 0 :(得分:0)
您获得的ID是评论框的对象ID
您可以使用fql查询其注释,例如:
SELECT text,post_fbid,username,fromid,time FROM comment WHERE object_id=10150692213226360
有关fql中可以浏览的注释表的更多信息: http://developers.facebook.com/docs/reference/fql/comment/
答案 1 :(得分:0)