我正在整合Facebook SDK。我需要得到图片中评论的回复。
我可以通过ID获取评论,但我无法得到评论的回复。 https://developers.facebook.com/docs/graph-api/reference/v2.6/comment
任何帮助,非常感谢。
答案 0 :(得分:1)
您可以使用评论'来获得对每条评论的回复。我喜欢:
/comment_id/comments?access_token=ABC.....123
comment_id = <POST_ID>_<COMMENT_ID>
答案 1 :(得分: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... }