Hi
The example is setting the path to just be "/".
After alot of headscratching, because i could not get the c# example to work, i asked chatgpt(should have done that from the start). it told me that the path was hardcoded.
it sugested this which seems more robust and works:
sb.Append($"{Request.Method}\n");
sb.Append($"{Request.Path}\n");
Hi
The example is setting the path to just be "/".
After alot of headscratching, because i could not get the c# example to work, i asked chatgpt(should have done that from the start). it told me that the path was hardcoded.
request-verification-examples/csharp/WebhookController.cs
Line 80 in b01c8dc
it sugested this which seems more robust and works: