How to fetch the user email address from sender_id field of Mentions webhook of Facebook Graph API?

38 Views Asked by At

I have subscribed to Page Mention webhook of Facebook Graph API. It returns me a response in this format :

{
    "entry": [
        {
            "id": "0",
            "time": 1690196803,
            "changes": [
                {
                    "field": "mention",
                    "value": {
                        "post_id": "44444444_444444444",
                        "sender_name": "Example Name",
                        "item": "post",
                        "sender_id": "44444444",
                        "verb": "add"
                    }
                }
            ]
        }
    ],
    "object": "page"
}

I am not finding any clear documentation of how can I fetch the user's info/email-id. Is it possible to fetch the user's email address from sender_id somehow?

0

There are 0 best solutions below