FQL注释表parent_id列不起作用

时间:2013-04-22 14:47:55

标签: facebook facebook-graph-api comments parent-child parent

在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'ORDDER 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错误??

注意:永远不要分享您的Facebook密码或访问令牌。

2 个答案:

答案 0 :(得分:0)

请参阅以下错误:

来自未在API中显示的线程帖子的评论

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

答案 1 :(得分:0)

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

希望这有帮助。