Is it possible to use 3D Secure when saving cards for future payments?
From Stripe's docs, https://stripe.com/docs/sources/three-d-secure. This seems to be the way to do it.
However according to the documentation, it's no longer recommended and to use PaymentIntents instead:
Use of this API is no longer recommended. If you wish to use 3D Secure we strongly encourage you to adopt PaymentIntents, our new payments API.
So with that, is there a way to use PaymentIntents (to utilize 3D secure) to just save a card without making a payment immediately?
stripe.createSource
like in Step 1 of your link, and save it to a customer object. Then, later, if you want to charge the card you can create a Payment Intent. stripe.com/docs/payments/payment-intents/… – Isostasy