I try to integrate Instagram into my web app. I need receive webhook by each comment/reply in my media. But I couldn't identify webhook comment parent ID because webhook response doesn't contain such information. Is there any way I can Find this. Im using graph api version 6.0
Instagram Webhook Dummy Response for comment
[
{ 'id': '123xxxxx', # account Id
'time': 1588854464,
'changes':
[
{'value':
{
'id': '345xxx', # comment/ reply Id
'text': 'hello world'
},
'field': 'comments'
}
]
}
]