首页 > 解决方案 > Graph Api Webhook Instagram 评论

问题描述

我尝试将 Instagram 集成到我的网络应用程序中。我需要通过媒体中的每条评论/回复接收 webhook。但我无法识别 webhook 评论父 ID,因为 webhook 响应不包含此类信息。有什么办法可以找到这个。我正在使用图形 API 6.0 版

Instagram Webhook Dummy 响应评论

[
{   'id': '123xxxxx',  # account Id
     'time': 1588854464, 
      'changes': 
      [
          {'value': 
            {
            'id': '345xxx',  # comment/ reply Id
             'text': 'hello world'
            }, 
          'field': 'comments'
          }
       ]
 }
]

标签: pythonpython-3.xfacebook-graph-apiinstagramfacebook-webhooks

解决方案


推荐阅读