#patrickhowonk_17393_66278

1 messages · Page 1 of 1 (latest)

south matrixBOT
#

Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

night tartan
#

You mean the Stripe Account header on Stripe React Native SDK?

undone sinew
#

i want to implimente account connected in react native

night tartan
#

Yeah, should be the Doc above

undone sinew
#

no, I want to implement the creation connected account in react native?

night tartan
#

That's not possbile. It's a backend API which needs backend secret key

undone sinew
#

yes but how to use with secret key

night tartan
#

Not with React Native. React Native is frontend

#

You will need Node.js for example

undone sinew
#

const account = await stripe.accounts.create({
type: "standard",
});

const { id } = account;
const accountLink = await stripe.accountLinks.create({
account: id,
refresh_url: "https://example.com/reauth",
return_url: "https://example.com/return",
type: "account_onboarding",
});

night tartan
#

Yeah

undone sinew
#

yes but I don't want to redirect to web but I want to integrate all account creation in mobile with react native

#

hey o