android - Angular 4 App - Allowing customers to link their bank accounts -


i know if there solution allows me create app allows users sign in. can link own bank account via stripe (stripe been integrated app).

the app accept payments , payments made go stripe account.

i not need code whole app or stripe integration guidance on how can implemented.

i have had @ following stripe resources - https://stripe.com/docs/stripe.js#bank-account-createtoken

however not sure if there needs 1 main stripe account (which create) , sub accounts underneath (which users create) or if each user have own stripe account (only accessible them).

also there special need implement when trying configure automated payouts or handled stripe directly.

is possible charge handling fee (for example 2%) payments made , if there specific method integration needs happen or can happen normal stripe integration.

app using following,

angular 4 ionic 3 built ios , android.

you can using stripe native plugin.here plugin's repo.

import { stripe } '@ionic-native/stripe';  constructor(private stripe: stripe) { }  ...  this.stripe.setpublishablekey('my_publishable_key');  let card = {  number: '4242424242424242',  expmonth: 12,  expyear: 2020,  cvc: '220' };  this.stripe.createcardtoken(card)    .then(token => console.log(token))    .catch(error => console.error(error)); 

for other business related questions need read this.if unable find solution specific need contact stripe team that.

if need see real implementation can full source code of from here (commercial 1 (just $ 5)).this readme file.but implementation has not been used cordova plugin have mentioned above.


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -