#yassinec
1 messages · Page 1 of 1 (latest)
The CLI actually has a --live flag for resending live mode events https://stripe.com/docs/cli/events/resend#events_resend-live
Also to be clear, other webhook events work fine but just events for this customer fail?
Oh I have missed it in the documentation
No worries
Yes exactly, same use case works fine with other customers
And is it the signature verification that is failing or something else in your code?
Something else in our code, after signature evaluation + invoice object extraction
Ah gotcha, I've seen this pattern with signature verification. It is basically an interesting quirk where we send request bodies i unicode, but the user will parse the body in ASCII. ASCII is a subset of unicode so that code will largely work, but then if you get a customer with a unicode character in their name it breaks.
Unrelated to your thing, I just think that is a fun bug
Exactly, just works until it doesn't and it is a bit of a weird pattern to catch on to
Thanks @ivory knoll , I have managed to forward the live webhook
However stripe login could not set the API keys for sending the event + starting the listener so I had to manually set up the API key
Hi 👋
So what is current state of your question?