【发布时间】:2013-04-15 12:40:02
【问题描述】:
在 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 错误??
注意:切勿分享您的 Facebook 密码或访问令牌。
【问题讨论】:
标签: facebook facebook-graph-api comments parent-child parent