我正在集成 Facebook SDK。我需要得到图片中评论的回复。
我能够获得带有 id 的评论,但我无法获得评论的回复。 https://developers.facebook.com/docs/graph-api/reference/v2.6/comment
任何帮助深表感谢。
我正在集成 Facebook SDK。我需要得到图片中评论的回复。
我能够获得带有 id 的评论,但我无法获得评论的回复。 https://developers.facebook.com/docs/graph-api/reference/v2.6/comment
任何帮助深表感谢。
您可以使用评论的 id 来获得每条评论的回复,例如:
/comment_id/comments?access_token=ABC.....123
评论 ID =<POST_ID>_<COMMENT_ID>
您可以使用相同的端点获取回复
/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... }