0.4.3 • Published 6 years ago

@monoku/react-native-payments-stripe v0.4.3

Weekly downloads
8
License
MIT
Repository
github
Last release
6 years ago

react-native-payments-addon-stripe

React Native Payments add-on for processing payments with Stripe.

Installation

First, download the package:

$ yarn add react-native-payments-addon-stripe

Second, install the React Native Payments CLI:

$ yarn add react-native-payments-cli

Lastly, link the native dependencies with the React Native Payments CLI:

$ yarn react-native-payments-cli -- link stripe

NOTE: react-native-payments-cli adds a Build Phase Script to your Xcode project that depends on Carthage.

Usage

In order to receive chargeable Stripe tokens as part of your PaymentResponse, you'll need to add some Stripe specific parameters to your PaymentMethodData.

Here's an example of a Stripe enabled Payment Method Data:

const METHOD_DATA = [{
  supportedMethods: ['apple-pay'],
  data: {
    merchantIdentifier: 'merchant.com.your-app.namespace',
    supportedNetworks: ['visa', 'mastercard', 'amex'],
    countryCode: 'US',
    currencyCode: 'USD',
+   paymentMethodTokenizationParameters: {
+     parameters: {
+       gateway: 'stripe',
+       'stripe:publishableKey': 'your_publishable_key',
+       'stripe:version': '5.0.0' // Only required on Android
+     }
+   }
  }
}];

Resources