You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To be able to do a stripe events resend evt_id --webhook-endpoint=we_id the stripe listen, does not provide WEBHOOK_ID.
So I have to use a 3rd party tool something like ngrok http 3000
AND I have to setup a WebhookEndpoint at https://dashboard.stripe.com/test/webhooks which makes the process even more complicated.
My question: In order to resend webhooks to my local machine, I want to stay in a "Stripe roundtrip" without external tools.
It should be possible to resend Hooks to the already running local stripe listen --forward-to localhost:3000/webhook_events/stripe
Am I missing something or is the "complicated way" the only one?
I also have to change my STRIPE_WEBHOOK_SECRET and respectively have to restart my app. Each time I do this
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi there,
in order to forward webhook calls to my app I use Stripe CLI:
stripe listen --forward-to localhost:3000/webhook_events/stripe
To be able to do a
stripe events resend evt_id --webhook-endpoint=we_id
thestripe listen
, does not provideWEBHOOK_ID
.So I have to use a 3rd party tool something like
ngrok http 3000
AND I have to setup a WebhookEndpoint at https://dashboard.stripe.com/test/webhooks which makes the process even more complicated.
My question: In order to resend webhooks to my local machine, I want to stay in a "Stripe roundtrip" without external tools.
It should be possible to resend Hooks to the already running local
stripe listen --forward-to localhost:3000/webhook_events/stripe
Am I missing something or is the "complicated way" the only one?
I also have to change my
STRIPE_WEBHOOK_SECRET
and respectively have to restart my app. Each time I do thisBeta Was this translation helpful? Give feedback.
All reactions