#Deborah
1 messages · Page 1 of 1 (latest)
Hello 👋
Do you have a screenshot I can take a look at?
Interesting, I've not seen Google Pay prompting for a 3DS auth before. My understanding was that they get 3DS exemption.
Do you have this PaymentIntent ID handy?
Here: pi_3NG5WRKcKyVTDO5U1KZcQjEl
Not sure I understand the flow here, you're passing an existing payment method while creating the PaymentIntent but then are also using PaymentRequestButton to collect a new one?
https://dashboard.stripe.com/logs/req_Nqwdg4Xm0Ut5KB
I'm not sure how I'm passing the payment method. I just use the PaymentRequestButtonElement and whatever method the user selects, they pay and I perform my callbacks.
You're passing it when you create the PaymentIntent
Look at the request body, I suspect that's causing this behaviour
Oh, I see. Should I not be passing it then?
Yup, if you already have a PaymentMethod stored then there's no point of having PaymentRequestButton right? Because all it does it that it allows you to collect a new payment method (i.e. Google Pay or Apple Pay)
Oh, I see. Got it. Thanks.