user6898719
user6898719

Reputation:

How to integrate Stripe using React Native and be PCI compliant?

I've researched everywhere and seems like React Native isn't really Stripe supported. I saw https://github.com/xcarpentier/react-native-stripe-api and https://github.com/lrettig/react-native-stripe , but the former is outdated, not supporting Stripe Connect, and latter is only iOS supported.

So the only one that was reliable and made sense was http://blog.bigbinary.com/2015/11/03/using-stripe-api-in-react-native-with-fetch.html .

Here it lays out what's needed to be fully PCI-compliant, https://stripe.com/docs/security

My question is, by following blog.bigbinary.com using fetch except hosting my secret key in the front-end, would I be fully PCI-compliant as if I was using Stripe.js? And how can I make sure to be using Transport Layer Security?

Anyone who has already fully integrated Stripe using React Native can chime in, would really appreciate any insight or guidance.

Will be accepting answer with upvote and thank you

Upvotes: 4

Views: 4019

Answers (1)

cybergrind
cybergrind

Reputation: 782

We've made wrapper around native Stripe SDK for both platforms here: https://github.com/tipsi/tipsi-stripe

It's also contains usage guide on RN side.

Upvotes: 4

Related Questions