npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bkamenov/cordova-plugin-google-pay

v1.0.1

Published

Cordova plugin for GooglePay

Downloads

15

Readme

An Android only plugin for processing Google Pay payments from your app.

Installation:

For stable relases type:

cordova plugin add @bkamenov/cordova-plugin-google-pay

For latest releases type:

cordova plugin add https://github.com/bkamenov/cordova-plugin-google-pay

After install, the plugin will be using the TEST environment of GooglePay.

To make it more obvious what environment you are currently using edit your app's config.xml as follows:

For PRODUCTION:

<platform name="android">
    ...
    <preference name="GooglePayEnvironment" value="PRODUCTION"/>
</platform>

For TEST:

<platform name="android">
    ...
    <preference name="GooglePayEnvironment" value="TEST"/>
</platform>

Usage:

//You can adjust it as you wish (see google.payments.api.PaymentDataRequest)
const paymentDataRequest = {
  apiVersion: 2,
  apiVersionMinor: 0,
  allowedPaymentMethods: [
    {
      type: 'CARD',
      parameters: {
        allowedAuthMethods: ['PAN_ONLY', 'CRYPTOGRAM_3DS'],
        allowedCardNetworks: ['AMEX', 'MASTERCARD', 'VISA']
      },
      tokenizationSpecification: {
        type: 'PAYMENT_GATEWAY',
        parameters: {
          gateway: 'example', //This is your payment service provider e.g. "stripe"
          gatewayMerchantId: 'exampleGatewayMerchantId' //Your merchant ID within "stripe
        }
      }
    }
  ],
  merchantInfo: {
    //merchantId: '01234567890123456789', //Your Google merchant ID. Uncomment in PRODUCTION with real ID.
    merchantName: 'Example Merchant' //Your Google merchant name
  },
  transactionInfo: {
    totalPriceStatus: 'FINAL',
    totalPrice: '12.34',
    currencyCode: 'USD',
    countryCode: 'US'
  }
};

//Just make a copy of some portions of the above request (see google.payments.api.IsReadyToPayRequest)
const canMakePaymentRequest = {
  apiVersion: paymentDataRequest.apiVersion,
  apiVersionMinor: paymentDataRequest.apiVersionMinor,
  allowedPaymentMethods: [
    {
      type: paymentDataRequest.allowedPaymentMethods[0].type,
      parameters: {
        allowedCardNetworks: paymentDataRequest.allowedPaymentMethods[0].parameters.allowedCardNetworks,
        allowedAuthMethods: paymentDataRequest.allowedPaymentMethods[0].parameters.allowedAuthMethods
      }
    }
  ]
};

//Call this when you want to display the button.
cordova.plugins.GooglePayPlugin.canMakePayment(canMakePaymentRequest,
(result) => {
  if(result.canMakePayments) {

    const gpayButton = document.getElementById("myGooglePayButton");
    if(!gpayButton)
      return; //This should not happen.

     gpayButton.onclick = () => {
      cordova.plugins.GooglePayPlugin.requestPayment(paymentDataRequest,
      (paymentData) {
        //Pass this to the payment gateway (e.g. your backend) and from there to the payment service provider
        const paymentToken = paymentData.paymentMethodData.tokenizationData.token;
        //console.log(JSON.stringify(paymentData)); //Uncomment to take a look what is inside
        //...or see google.payments.api.PaymentData
      },
      (error) => {
        if(error === "Payment cancelled") {
          return; //Payment was cancelled
        }

        //Show to the user that there was a payment problem
        ...

        console.error("There was an error while processing your payment. Details: " + error);
      });
    };

    //Make your button visible
    gpayButton.style.visibility = "visible";
  }
  else {
    //Show that this device does not support the desired payment methods.
    ...
  }
},
(error) => {
  console.error("An error occured while chcking if payment methods are supported by GooglePay. Details: " + error);
});

...
<button id="myGooglePayButton" style="visibility:hidden">Place order</button>
...