2

我正在集成 Facebook SDK。我需要得到图片中评论的回复。

我能够获得带有 id 的评论,但我无法获得评论的回复。 https://developers.facebook.com/docs/graph-api/reference/v2.6/comment

任何帮助深表感谢。

4

2 回答 2

1

您可以使用评论的 id 来获得每条评论的回复,例如:

/comment_id/comments?access_token=ABC.....123

评论 ID =<POST_ID>_<COMMENT_ID>

于 2018-01-16T07:14:24.463 回答
0

您可以使用相同的端点获取回复

/object-id/comments - object id is an id of comment replies foer you want

您也可以在一个请求中获取带有回复的评论

post-id/comments?fields=id,message... [other fields you want] ...,comments{from,message,id... }
于 2017-05-30T08:28:05.403 回答