Can token be used to link debit card to Stripe-Connect account?
See original GitHub issueHey,
First of all thanks for creating this package!
My question is: I am currently implementing Stripe Connect in my RNapp. To link a users debit card to a stripe account (so that the user can receive payments from other users), I need to pass a token that is created with Stripe.js.
I thought the token returned by stripe.createTokenWithCard()
would return said token that I can then send to the backend to make the actual connection. However, I get an error saying that the token I am providing is not from Stripe.js.
Is the token returned by stripe.createTokenWithCard()
some other (maybe own created) token?
Thanks in advance!
Issue Analytics
- State:
- Created 6 years ago
- Comments:23 (5 by maintainers)
Top Results From Across the Web
Using tokens to securely transmit account data - Stripe
Connect platforms can use Stripe.js to securely collect account details from their ... Tokens cannot be used for any other account information, including:....
Read more >Auth - Stripe | Plaid Docs
Plaid will automatically create and return a Stripe bank account token for this account, which can then be used to move money via...
Read more >Apple Pay security and privacy overview
When you add a credit, debit, prepaid, or transit card (where ... The Device Account Number can't be decrypted by Apple but is...
Read more >Stripe Payment: Save token and customer and make payment ...
In Stripe, in order to save a card (or bank account) to charge later, you have to create a customer, then add payment...
Read more >Integrating Plaid Link with Stripe | by Connor Parsons | Medium
Plaid's link API is a super slick tool for authenticating bank account ... token, which can be used to query Plaid for other...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@wmonecke @larryranches I have the same question
Here is some code, it is a bit messy but I had to do it in a rush. If you need any help or clarification I will gladly help you!
FRONT END - the stripe class referenced here is coming from tipsi-stripe and NOT stripe.js.
BACK END - the stripe class referenced here is coming from stripe.js and NOT tipsi-stripe. That is the whole point of having the backend in the first place.