#moezz-Payment
1 messages · Page 1 of 1 (latest)
Hello Jack
sure
Id: pm_1LKVDsBkEvl4irOR63KxnKer
and another one pm_1LD9WyBkEvl4irORqP1qK5UE
This is the PaymentMethod ID, I need the PaymentIntent ID, which starts with pi_
here we go
first client: pi_3LISyHBkEvl4irOR0ikI8Y8I
second client: pi_3LD9XABkEvl4irOR1dp8tjgk
Thanks, both payment intents are in requires_action status, so it is waiting for customer's action to authorize the payment (i.e., 3DS)
So in this case, you need to bring your customer back to your webpage, and call stripe.handleNextAction https://stripe.com/docs/js/payment_intents/handle_next_action
thank you. So, They have to contact their bank, right?
https://stripe.com/docs/payments/intents you can also learn the PaymentIntent lifecycle here
No, you need to bring your customer to you webpage and and call stripe.handleNextAction to start the authentication flow
ok
https://stripe.com/docs/js/payment_intents/handle_next_action can you try again?
Page not found!
Sorry, but the page you were looking for couldn't be found.
That's strange, anyway this is how you call handleNextAction in your webpage.
clientSecret: '{PAYMENT_INTENT_CLIENT_SECRET}'
}).then(function(result) {
// Handle result.error or result.paymentIntent
});```
Can you open this page instead? https://stripe.com/docs/js/payment_intents/confirm_payment
The handleNextAction is already deprecated, you should use confirmPayment instead.