我试图使用此代码使用Facebook Graph API获取评论
https://graph.facebook.com/post_id/comments?access_token=XXX
其中XXX由我的访问令牌替换。我面临的问题是我没有收到所有评论。它的最终输出是这样的: enter image description here
答案 0 :(得分:0)
如果使用这样的限制,我可以获得所有评论的解决方案之一:
https://graph.facebook.com/post_id/comments?access_token=XXX&limit=1000
这解决了我的问题,因为我只有50多条评论。仍在寻找更好的解决方案。