0

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

4

2 回答 2

0

你得到的ID是评论框的对象ID

您可以使用 fql 查询其评论,例如:

SELECT text,post_fbid,username,fromid,time FROM comment WHERE object_id=10150692213226360

http://developers.facebook.com/tools/explorer?method=GET&path=fql%3Fq%3Dselect%20text%2Cpost_fbid%2Cfromid%2Ctime%20from%20comment%20where%20object_id%3D10150692213226360

有关 fql 中评论表的更多信息,您可以浏览:http: //developers.facebook.com/docs/reference/fql/comment/

于 2012-04-29T22:30:19.603 回答
0

有一个关于此的错误。

可以在这里找到。

它似乎已被分配,因此您可以期待很快的解决方案。

于 2012-07-26T17:31:11.897 回答