How to integrate Stripe with React Native and be PCI compatible?

I have researched everywhere and it seems that React Native is not supported by Stripe. I saw https://github.com/xcarpentier/react-native-stripe-api and https://github.com/lrettig/react-native-stripe , but the former is deprecated, does not support Stripe Connect, and the latter only supports iOS .

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

Here he lays out what should be fully PCI compatible, https://stripe.com/docs/security

My question is this: blog.bigbinary.comusing fetch, except that I have my secret key in the interface, would I be fully PCI compatible, as if I were using Stripe.js? And how can I be sure of the use of transport-level security?

Anyone who has already fully integrated Stripe using React Native can listen, will be very grateful for your understanding or guidance.

Will accept the answer using upvote and thanks

+4
source share
1 answer

We created a shell for the native Stripe SDK for both platforms: https://github.com/tipsi/tipsi-stripe

RN.

+4

Source: https://habr.com/ru/post/1659226/


All Articles