#Nepho - Card Auth
1 messages · Page 1 of 1 (latest)
Hi Nepho. Reading now. Let's chat in this thread
Hi Nepho. Are you using Elements or Stripe Checkout?
I'm using neither, just the provided Node.js SDK
Available here: https://github.com/stripe/stripe-node
Yes, but from the front-end where your customer enters payment details
Are you doing that through Checkout or Elements
The front-end is a handmade mobile application that communicates with a back-end that is the intermediary between the front-end and Stripe
A react-native application to be precise!
Oh ok that helps thanks
Do you want to have a custom flow within your app for card authentication, or a redirect?
I guess redirect is easier to implement? But if everything can stay from within the application it's better. So I'd say custom flow within the app.
Got it. Checking some things for you
Thank you!
So essentially the flow of creating a subscription is going to be the same as seen here: https://stripe.com/docs/billing/subscriptions/build-subscription?ui=elements#create-subscription (to grab the subscription.latest_invoice.payment_intent.client_secret). But within the custom flow you build, the process of confirming the payment and authenticating (if required) will be different. You can follow this react native guide for that part: https://stripe.com/docs/payments/accept-a-payment?platform=react-native&ui=custom#react-native-submit-payment
Thank you for your time and the resources, I'm going to take a look.