项目作者: bot101

项目描述 :
A Paystack capacitor plugin for Android and iOS
高级语言: Objective-C
项目地址: git://github.com/bot101/capacitor-paystack.git
创建时间: 2020-05-12T13:18:56Z
项目社区:https://github.com/bot101/capacitor-paystack

开源协议:

下载


Paystack Capacitor Plugin

A Paystack capacitor plugin for Android and iOS

Getting Started

This plugin enables seamless integration of the Paystack SDK into a Capacitor application.

Installation

To install this plugin, run the NPM command below in your Capacitor project’s root folder

  1. npm i capacitor-paystack-plugin

Then open your project in Android Studio with

  1. npx cap open android

or XCode with

  1. npx cap open ios

Configuration

In your Android Studio project, add the following line to the list of plugins in your project, if any

  1. ...
  2. add(PaystackCapacitor.class);

In your project folder, run the command below to update your Android Studio/XCode project

  1. npx cap sync

Setup complete!

Code example

To charge a card,

  1. //Import the paystack plugin
  2. import { PaystackPlugin } from '@bot101/capacitor-paystack-plugin';
  3. //Create a paystack object
  4. const paystack: PaystackPlugin; = new PaystackPlugin();
  5. //Initialize the SDK with your Paystack public key (found in your Paystack developer account dashboard)
  6. await this.paystack.initialize({publicKey: "pk_public key here"});
  7. //Add customer card information
  8. await this.paystack.addCard({
  9. cardNumber: String(cardNumber),
  10. expiryMonth: String(expiryMonth),
  11. expiryYear: String(expiryYear),
  12. cvv: String(cvv)
  13. });
  14. //Add the email to charge
  15. await this.paystack.setChargeEmail({email: "email@address.com"});
  16. //Set the amount to charge the card (in kobo)
  17. await this.paystack.setChargeAmount({amount: '1000000'});
  18. //Optionally add custom fields, metadata and charge parameters (more information in the Paystack docs)
  19. await this.paystack.putChargeCustomFields({customField1: "field1", customField2: "field2"});
  20. await this.paystack.putChargeMetadata({metaData1: "meta1", metaData2: "meta2"});
  21. await this.paystack.addChargeParameters({param1: "param1", param2: "param2"});
  22. //Call chargeCard to charge the card
  23. const chargeResponse = await this.paystack.chargeCard();
  24. return chargeResponse.reference;

To charge an access code

  1. //After initializing the plugin as detailed above
  2. //Add customer card information
  3. await this.paystack.addCard({
  4. cardNumber: String(cardNumber),
  5. expiryMonth: String(expiryMonth),
  6. expiryYear: String(expiryYear),
  7. cvv: String(cvv)
  8. });
  9. //Set the access code retrieved from your web server
  10. await this.paystack.setAccessCode({accessCode});
  11. //Call chargeCard to charge the card
  12. const chargeResponse = await this.paystack.chargeCard();
  13. return chargeResponse.reference;

To get a card type

  1. const cardInfo = await this.paystack.getCardType()
  2. console.log(cardInfo.card_type) //"Visa", "Mastercard", e.t.c

Note

None

Running the tests

Tests are not yet setup

Deployment

Build your application and you are good to go!

Versioning

Yet to setup

Author

  • Okafor Ikenna - Github

    License

This project is licensed under the MIT License