#Lacruzito-webhook
1 messages · Page 1 of 1 (latest)
Oh, that's right!
Can you double check that you are using the correct webhook signing secret?
It should be displayed in the terminal were you ran stripe listen
oh damn it wasn't the write one
I didn't know this secret could change
does it change periodically ?
Thanks for your help !
Yes it can change, but not frequently.
Alright, thank you 🙂
What is "stripe listen"?
I assumed you were testing your webhook locally with the Stripe CLI: https://stripe.com/docs/cli/listen
Is this like ngrok?
I'm not familiar with ngrok. But here's how it works:
- You run your server locally, for example on
http://localhost:4242 - Then you run
stripe listen --forward-to http://localhost:4242/webhooks - And all webhook events will be forwarded to
http://localhost:4242/webhooks
This is great for testing.