Facebook graph api 使用facebook FQL获取包含所有评论的每个帖子id

Facebook graph api 使用facebook FQL获取包含所有评论的每个帖子id,facebook-graph-api,facebook-javascript-sdk,facebook-fql,fql.multiquery,Facebook Graph Api,Facebook Javascript Sdk,Facebook Fql,Fql.multiquery,我想使用fql查询获取每个帖子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 sa

我想使用fql查询获取每个帖子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

正如你看到的,它在一个对象中返回文本和post_id。我想要的是在一个对象中会有post_id及其所有注释。希望我在挣扎了一个小时后得到答案。这与使用join的多个查询有关。

我以为在这里我会比其他站点更快得到答复。但是专家在哪里?看起来好像没人想再浪费时间了用FB的东西。。