如何使用FQL查询Facebook以获取喜欢和评论帖子或照片的用户名

时间:2014-08-05 09:23:16

标签: facebook facebook-graph-api facebook-fql facebook-graph-api-v2.0

好的我想做的很简单,但我不确定是否可以做到

这里是我要查询的帖子和图片

原创分享图片:

https://www.facebook.com/MonsterMMORPG/photos/a.551985868170404.1073741825.198765706825757/694573437244979/?type=1

转发图像

https://www.facebook.com/MonsterMMORPG/posts/699889243380065

现在我希望得到喜欢图片和帖子的人,并对他们进行评论

我正在尝试通过下面的FQL获取喜欢的用户标识,但它不返回任何内容

SELECT user_id  FROM like WHERE post_id=699889243380065

我在图api资源管理器面板这里截图

第一张图片第二张失败

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用Facebook-graph-api获取您喜欢的列表,如下所示:

https://graph.facebook.com/v2.0/699889243380065/likes

(当然有有效代币)

您将收到以下列表:

{
  "data": [
    {
      "id": "xxx", 
      "name": "xxx"
    }, 
    {
      "id": "xxx", 
      "name": "xxx"
    }, 
etc

通过graph-api获取评论列表:

https://graph.facebook.com/v2.0/699889243380065/comments