2

在 Graph API Explorer 中,这个查询给了我结果

SELECT post_id, fromid, text, time, id, username, likes, user_likes, parent_id FROM comment WHERE post_id = '100940606645739_405463442860119' ORDER BY time DESC

但是,当我尝试从我的应用程序中拨打电话时:

https://graph.facebook.com/fql?q=SELECT post_id, fromid, text, time, id, username, likes, user_likes, parent_id FROM comment WHERE post_id = '100940606645739_405463442860119' ORDER BY time DESC&access_token=ACCESS_TOKEN

(最后一个链接也适用于 Graph API Explorer)

它说 parent_id 不是评论表的成员。

{
   "error": {
      "message": "(#602) parent_id is not a member of the comment table.",
      "type": "OAuthException",
      "code": 602
   }
}

这是脸书错误??

注意:切勿分享您的 Facebook 秘密或访问令牌。

4

2 回答 2

0

请参阅以下错误:

来自主题帖子的评论未显示在 API 中

https://developers.facebook.com/bugs/555752071131751?browse=search_5175ab4f32aa87763025618

于 2013-04-22T21:36:58.050 回答
0

我最初也遇到了这个问题,但是通过简单地为我的应用程序启用 2013 年 7 月的迁移来解决它。

希望这可以帮助。

于 2013-05-24T08:48:18.787 回答