Stripe native plugin

Hi all!

Have someone of you used the stripe plugin?

Is it able to perform payments from an user card to my stripe account? The docs are not so clear in that sense.

Thanks!

1 Like

You use the plugin to convert some payment data (credit card or bank account data) to a token. A token can then be used to get money from that credit card - but that doesn’t happen on the device but in your backend. So you send the token to your backend, where it is saved and used for communication with the Stripe API. Your backend doesn’t hold the card data, so no danger of loosing your customers payments data.

Very clear!

Thank you so much!

1 Like