使用facebook FQL获取每个帖子ID和所有评论

时间:2013-04-25 12:02:20

标签: facebook-graph-api facebook-javascript-sdk facebook-fql fql.multiquery

我希望使用fql query获取每个帖子ID以及页面的所有注释。如果我使用 -

SELECT text,post_id  FROM comment  WHERE post_id IN(SELECT post_id  FROM stream  WHERE source_id=page_id_here) 

这会返回 -

{
  "data": [
    {
      "text": "Would be nice if my website would let me do the update. It says I have the most current version 2.5.9 :(",
      "post_id": "2211155996_10151336546425997"
    },
    {
      "text": "All of mine just started showing the update message in the last hour and just got the emails from Admin tools.",
      "post_id": "2211155996_10151336546425997"
    },
........continues

正如你所看到它在一个对象中返回text和post_id。我想要的是post_id及其在一个对象中的所有注释。我得到了答案,因为我正在努力一个小时。这与多个查询有关加入

0 个答案:

没有答案