我正在尝试使用Graph API在我的iOS应用中实现Facebook评论窗口小部件功能。如何以正确顺序获取所有评论没有用户身份验证并检索access_token?
我知道,我可以使用
https://graph.facebook.com/comments?id=<my-url>
检索注释,但此方法仅返回root(第一级)注释。我可以添加参数filter=stream
https://graph.facebook.com/comments?id=<my-url>&filter=stream
在这种情况下,我将收到所有评论,但我无法确定哪些是嵌套评论的根ID和父ID。
如何以正确的顺序获得所有评论?
答案 0 :(得分:2)
我找到了其他参数,允许在回复中包含parent_id
:
https://graph.facebook.com/comments?id=<my-url>&filter=stream&fields=parent.fields(id),message,from,likes,created_time
我希望有人会觉得它很有帮助。