如何在一个查询中从 Instagram API 获取评论及其回复
我正在使用下面给出的 URL 进行 GET 请求 -
https://graph.facebook.com/${ig_media.id}/comments?access_token=${config.userAccessToken}
但它只返回 Instagram 媒体上的评论,我可以在一个查询中同时获取评论及其回复吗?因为我不想查询每个评论以获得回复。
I am using the below given URL for GET request -
https://graph.facebook.com/${ig_media.id}/comments?access_token=${config.userAccessToken}
But it's returning only comments on Instagram media, can I get both comments and their replies in one query? As I don't want to do query for each comment to get replies.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许我迟到了,但也许一些新人会需要这些信息。
您的查询很好,您所需要做的就是添加查询参数来定义您需要的字段,如下所示:
Maybe I am late, but maybe some newcomers will need this information.
Your query is fine, all you need is to add Query params to define the fields you need like this :