#jay1567-react-native
1 messages · Page 1 of 1 (latest)
@dark summit There is a pre-built UI and we have a detailed step by step integration guide: https://stripe.com/docs/payments/accept-a-payment?platform=react-native
I recommend taking the time to go through those steps slowly first ignoring Connect to start.
Okay. We actually have this implemented before.
When we were not storing the the card details and linking paymentMethod. Now when we tried using the same PaymentSheet with an PaymentIntent that had a PaymentMethod it gives failure and in console it shows each value as null
You can't use the same PaymentSheet since there are for 2 completely separate accounts
One is for the platform (collecting card details) and then you need a separate implementation to then confirm on the connected account (direct charge)
Also do you have a save type of pre built page available just to save cards. Like we want to setup customer even before payment so when payment comes we list the cards and customer selects a card and we process it. I have checked the CardField already but is there like a pre-built page same as PaymentSheet for saving Card Details in React Native.
Ok, just let me confirm these as i think we're using a wrapper function with the connected stripe account id.
As previously the working implementation had DirectCharges only created without any customer creation or linking.
We also have detailed docs for saving without a payment: https://stripe.com/docs/payments/save-and-reuse?platform=react-native
Make sure to take the time to go through each of our doc and test things first!