GithubHelp home page GithubHelp logo

parksmart-dev / cordova-plugin-apple-spay Goto Github PK

View Code? Open in Web Editor NEW

This project forked from awkoy/cordova-plugin-apple-spay

0.0 0.0 0.0 29 KB

Implements Apple Pay with Stripe

JavaScript 15.90% Objective-C 31.69% Java 52.42%

cordova-plugin-apple-spay's Introduction

Cordova Apple Pay and Google Pay integration

This plugin is built as unified method for obtaining payment from Apple/Google pay to Stripe

Plugin supports iOS 11+, android 10+.

Installation

cordova plugin add cordova-plugin-apple-spay --variable STRIPE_LIVE_PUBLISHABLE_KEY=your_key --variable STRIPE_TEST_PUBLISHABLE_KEY=your_key --variable APPLE_MERCHANT_IDENTIFIER=your_merchant_id

For Android, register and fill all required forms at https://pay.google.com/business/console. Add following to config.xml:

<config-file parent="/manifest/application" target="AndroidManifest.xml">
    <meta-data
            android:name="com.google.android.gms.wallet.api.enabled"
            android:value="true" />
</config-file>

For iOS, you have to have valid developer account with merchant set up and ApplePay capability and a merchant id configured in your Xcode project. Merchant id can be obtained from https://developer.apple.com/account/resources/identifiers/list/merchant. Do configuration manually or using config.xml:

<platform name="ios">

  <config-file target="*-Debug.plist" parent="com.apple.developer.in-app-payments">
    <array>
      <string>developer merchant ID here</string>
    </array>
  </config-file>

  <config-file target="*-Release.plist" parent="com.apple.developer.in-app-payments">
    <array>
      <string>production merchant ID here</string>
    </array>
  </config-file>
</platform>

Usage

window.AppleSpayPlugin.makePaymentRequest() create payment request

request example:
{
        items: [
          {
            label: "UTEC USA LLC",
            amount: 33,
          },
        ],
        amount: 33,
        countryCode: "UA",
        currencyCode: "USD",
        billingAddressRequirement: "none",
        shippingAddressRequirement: "none",
        clientSecret: this.paymentIntentApple.clientSecret,
}
All parameters in request object are required.

window.AppleSpayPlugin.canMakePayments() return boolean true/false

cordova-plugin-apple-spay's People

Contributors

rzr666 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.