当我将Graph API称为
时https://graph.facebook.com/comments/?access_token={TOKEN}&filter=stream&fields=parent.fields(id),message,from&ids={PAGE_CONTAINING_EMBEDDED_FB_COMMENT_BOX}
结果显示回复以及" parent"字段。
尝试使用相同的页面Feed:
https://graph.facebook.com/{PAGE_ID}/feed?access_token={TOKEN}&limit=100&fields=parent.fields(id)
我得到"父母"不支持子字段。错误信息。 " fields ="的正确语法是什么?用于检索包含页面帖子回复的所有评论的参数?
提前谢谢。
答案 0 :(得分:2)
要获得帖子和回复,请尝试以下操作:
fields=from,to,message,picture,link,name,caption,description,created_time,updated_time,likes,comments.limit(999)
要获得回复的帖子,回复和回复,请尝试以下操作:
fields=from,to,message,link,name,caption,description,created_time,updated_time,likes,comments{from,to,message,link,name,caption,description,created_time,updated_time,like_count,comments{from,to,message,link,name,caption,description,created_time,updated_time,like_count}}