Ultramsg.com whatsapp-webhook-vbnet
simple project to handle incoming WhatsApp message using VB.Net .
by Ultramsg.com
for local development purposes, a tunneling service is required. This example uses ngrok , You can download ngrok from here.
dotnet watch
ngrok http https://localhost:6000
Go to your ultramsg account for set Webhook URL after copying the ngrok url and add /api/ Route like this :
https://501-414-43-1.ngrok.io/api/
and enable this option "Webhook on Received" .
now You should be able to receive WhatsApp webhooks .
{
"event_type": "message_received",
"instanceId": "1150",
"id": "",
"referenceId": "",
"data": {
"id": "false_10171127174@c.us_3EB02E5EB89Cff3FB034",
"from": "10122127174@c.us",
"to": "10172124470@c.us",
"author": "",
"pushname": "Steve",
"ack": "",
"type": "chat",
"body": "Hi,How are you",
"media": "",
"fromMe": false,
"isForwarded": false,
"isMentioned": false,
"quotedMsg": {},
"mentionedIds": [],
"time": 1650002600
}
}
Use Issues to contact me