Facebook Webhooks for Pages

2

I configured an application to send Webhook Events to my API, as follows:

AftersettingupWebhooksintheApplicationthisway(Inscribedname,email):

MyAPIisonlyreceivingthefollowingcode:

{
   "object":"page",
   "entry":[
      {
         "id":"IDPAGINA",
         "time":1516114603786,
         "messaging":[
            {
               "sender":{
                  "id":"IDPAGINA"
               },
               "recipient":{
                  "id":"IDUSER"
               },
               "timestamp":1516114603605,
               "message":{
                  "mid":"mid.123456",
                  "seq":4123456,
                  "text":"Mensagem enviada"
               }
            }
         ]
      }
   ]
}

Through these data I can not receive the Name and E-mail of the user who is sending the message.

According to verified examples this would be the receipt.

Something you can help me with?

    
asked by anonymous 16.01.2018 / 16:12

0 answers