An example application demonstrating receiving a webhook with C# and ASP.NET Core.
- Follow the Hookdeck Inbound Webhook Quickstart
- Check out the Hookdeck docs
You'll need:
- The Hookdeck CLI
- The .NET CLI
git clone https://github.com/hookdeck/quickstarts hookdeck-quickstarts
cd hookdeck-quickstarts/dotnet/inbound
To use webhook verification, get your webhook secret from the Settings -> Secrets section of your Hookdeck Project.
dotnet user-secrets init --project "."
dotnet user-secrets set "inbound:HookdeckWebhookSecret" "YOUR-WEBHOOK-SECRET" \
--project "."
dotnet run
Run the Hookdeck localtunnel using the Hookdeck CLI:
hookdeck listen 3030 inbound-dotnet