#Arctic
1 messages · Page 1 of 1 (latest)
Hello, do you have the IDs of any events that didn't get delivered properly to your endpoint? (evt_123)
It looks like your server is sending back to us Webhook error: No signatures found matching the expected signature for payload. Are you passing the raw request body you received from Stripe? https://github.com/stripe/stripe-node#webhook-signing
So it looks like you are throwing a Stripe error here and sending that back along the wire
There are typically two causes of this error: the webhook secret, and the body that you pass in to the verify function
Did you double check that this is the correct webhook secret for this specific endpoint? Each endpoint has its own secret, so if you are using the one from your CLI endpoint for example it will not work
this was the problem , thank you 👍