#taylan-forward-events
1 messages ยท Page 1 of 1 (latest)
Hi there ๐ can you explain the steps that you've taken so far and where you started running into problems?
I opened online cli here
https://stripe.com/docs/stripe-cli?shell=true
Typed stripe listen --forward-to http://207.154.250.10/do not include/test.php
Then I triggered event on new cli window
stripe trigger payment_intent.succeeded
This doesnt send any action to my test.php
Hey there ๐
Stepping in for @kind iris here
Are you seeing any errors on your PHP side? Can you try adding more logging to see if anything is making its way to your server?
nothing is making its way to my server ๐ฆ
I can share screen to show my workspace
Can you share the event ID that you expected to be delivered but didn't?
You can find the events here
https://dashboard.stripe.com/test/events
evt_3KdbOaGBhi4wdnXz1J919Les
Thanks for this.
Seems like the event is being sent to multiple webhooks endpoints including some local CLI endpoints.
AFAICT Stripe Shell is just a way to experiment with the webhook events to see if it'd fit your use-case. So I'd recommend setting up local Stripe CLI integration
I triggered new event and got php exception message
No signatures found matching the expected signature for payload
evt_3KdbiPGBhi4wdnXz0DNeunHV
I see.
Yeah so that means the events are being delivered but since you don't have the webhook secret, you can't see the payload.
I don't see a way to look at the webhook secret for Stripe Shell
how can I solve it, how can I have the right $endpoint_secret
Configure Stripe CLI locally on your computer and then you can test it with your PHP integration
https://stripe.com/docs/stripe-cli#install
okey thanks