Skip to main content

Stripe

A plugin that allows you to use Stripe's Native SDKs for Android and iOS.

https://github.com/zyramedia/cordova-plugin-stripe

Stuck on a Cordova issue?

Don't waste precious time on plugin issues.

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.

Installation#

$ npm install cordova-plugin-stripe
$ npm install @ionic-native/stripe
$ ionic cap sync

Supported Platforms#

  • Android
  • Browser
  • iOS

Usage#

React#

Learn more about using Ionic Native components in React

Angular#

import { Stripe } from '@ionic-native/stripe/ngx';
constructor(private stripe: Stripe) { }
...
this.stripe.setPublishableKey('my_publishable_key');
let card = {
number: '4242424242424242',
expMonth: 12,
expYear: 2020,
cvc: '220'
}
this.stripe.createCardToken(card)
.then(token => console.log(token.id))
.catch(error => console.error(error));