Webhooks & HMAC
Erfahren Sie, wie Sie sichere Echtzeit-Benachrichtigungen bei Telefonverifikation empfangen.
The Webhooks are the fastest and most secure way to know that a user has successfully verified without the need for Polling.\nWhen the user sends the message and it is successfully matched, our system sends a POST request to a URL that you specify in advance in your project settings.\n\n### Webhook Security (HMAC Signature)\nTo ensure that requests are truly coming from our servers and are not fake attacks, we sign every request using the HMAC-SHA256 algorithm.\n1. Go to project settings and generate a Webhook Secret.\n2. An encrypted signature will be attached in the request Header named x-webhook-signature.\n3. You must calculate the signature on your server using the same Secret of yours and compare it to the sent signature.