#Nepho - Card Auth

1 messages · Page 1 of 1 (latest)

thick wolf
#

Hi Nepho. Reading now. Let's chat in this thread

#

Hi Nepho. Are you using Elements or Stripe Checkout?

gritty sapphire
#

I'm using neither, just the provided Node.js SDK

thick wolf
#

Yes, but from the front-end where your customer enters payment details

#

Are you doing that through Checkout or Elements

gritty sapphire
#

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!

thick wolf
#

Oh ok that helps thanks

#

Do you want to have a custom flow within your app for card authentication, or a redirect?

gritty sapphire
#

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.

thick wolf
#

Got it. Checking some things for you

gritty sapphire
#

Thank you!

thick wolf
#

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

Create and manage subscriptions to accept recurring payments.

Securely accept payments online.

gritty sapphire
#

Thank you for your time and the resources, I'm going to take a look.