#patrickhowonk_17393_66278
1 messages · Page 1 of 1 (latest)
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.
- patrickhowonk_17393_66278, 20 hours ago, 21 messages
You mean the Stripe Account header on Stripe React Native SDK?
i want to implimente account connected in react native
Yeah, should be the Doc above
no, I want to implement the creation connected account in react native?
That's not possbile. It's a backend API which needs backend secret key
yes but how to use with secret key
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",
});
Yeah