tolu360 / react-native-paystack

React Native Wrapper for the Paystack Native Mobile SDKs
162 stars 46 forks source link

How does this enable mobile users add card on paystack #48

Closed salvationarinze closed 4 years ago

salvationarinze commented 4 years ago

Hi, Nice package. I wish to know if this library has a way of enabling users add a card of paystack, returning the auth, without storing the users information

tolu360 commented 4 years ago

Hey Arinze, the straight answer is No! This package does not make possible anything not currently possible via the Paystack native SDKs or the Paystack API. Card tokenization had long been deprecated by the Paystack team. In its stead, what you can do is charge (on your server) your users a minimal (and/or refundable) card enrolment fee, try N5 or N10 calling chargeCardWithAccessCode and save (on your server) the auth code returned for the charge, if successful.

salvationarinze commented 4 years ago

Thanks man