This project validates a Verification Event callback received from the Sinch platform when using the Sinch Verification product with callbacks enabled.
- dotnet 6.*
- ngrok
- replace the required values in the
./VerificationEventHandler/Program.cs
file - run the server using
dotnet watch run --project VerificationEventHandler --urls=http://localhost:8000
- start ngrok
ngrok http 8000
- copy the ngrok url to the Verification App that you will receive Verification Events from to your Sinch Dashboard
- make sure to append the following URI at the end of the URL,
/api/verification/events
- example
https://df6a-143-177-206-33.ngrok.io/api/verification/events
- test using the SMS PIN Verification script found in the project
- replace the required values in the
./SMSVerificationTestScript/Program.cs
file dotnet run --project SMSVerificationTestScript
- by default, the request authenticates by application signing the HTTP request. To switch to basic authentication, comment
line 34
and uncommentline 40
.
- replace the required values in the