#softagile_com - Webhooks
1 messages · Page 1 of 1 (latest)
Is there any solution for "retry"?
webapp is listening from webhook event is an ASP.net application (IIS based)
That is not an error message I have seen before. How are you handling receiving and responding to webhook requests?
Like are you making sure to return a valid 200 response? How are you checking the Stripe signature and validating the event?
And have you reviewed this doc?
https://stripe.com/docs/webhooks/best-practices
now I tried again and all is well
btw, I did not implement signature verification of webhooks
really strange
If you are going to allow an outside server to POST to your application, it's a good idea to use the signature validation process we outline to make sure it's Stripe that is sending you the webhooks. Lot's of shady servers out there
I can figure it
now we are in test mode
In production mode, I have to do it
thx
I am going to do other tests
Okay cool. Feel free to come back if you. have any other questions. I'd just seriously recommend the webhook signature verification. We've got C# snippets for it.