expo-tappay-apple-pay
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

Expo Tappay - Apple Pay

Installation

npx expo install expo-tappay-apple-pay

Prerequisites

  • Please create a Tappay account and get the app ID from Tappay Dashboard.
  • Create Merchant ID and Apple Pay Certificate from Apple Developer.
  • Integrate your Merchant with Tappay Dashboard.
  • Please add the following config in your app.json
{
  "expo": {
    "plugins": [
      [
        "expo-tappay-apple-pay", {
          "merchantId": "YOUR_MERCHANT_ID", // replace with your Merchant ID
          "acceptNetworks": [
            "Visa",
            "MasterCard",
          ], // optional, default is ["Visa", "MasterCard", "JCB"]
          "appId": 11340, // replace with your Tappay App ID
          "appKey": "app_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", // replace with your Tappay App Key
          "serverType": "sandbox", // optional, default is "sandbox". "production" is also available
        }
      ]
    ]
  }
}

Usage

Setup Merchant

import { ApplePay } from "expo-tappay-apple-pay";

const applePayRef = useRef<ApplePay>();
applePayRef.current?.setupMerchant(
  "YOUR_MERCHANT_NAME", // replace with your Merchant Name
  "MERCHANT_CAPABILITY", // replace with your Merchant Capability (3DS, EMV, Credit, Debit)
  "YOUR_MERCHANT_ID", // replace with your Merchant ID
  "TW", // replace with your Country Code
  "TWD", // replace with your Currency Code
)

Add Item to Cart

import { ApplePay } from "expo-tappay-apple-pay";

const applePayRef = useRef<ApplePay>();

applePayRef.current?.addItemToCart({
  name: "Item Name", // replace with your Item Name
  amount: 100, // replace with your Item Amount
});

Listen to Payment Event

import { ApplePay } from "expo-tappay-apple-pay";

return <ApplePay
  onApplePayStart={() => {
    console.log("onApplePayStart");
  }}
  onReceivePrime={(event) => {
    console.log("onReceivePrime", event);
  }}
  onApplePaySuccess={(event) => {
    console.log("onApplePaySuccess", event);
  }}
  onApplePayCancel={() => {
    console.log("onApplePayCancel");
  }}
  onApplePayFailed={(event) => {
    console.log("onApplePayFailed", event);
  }}
  onApplePayFinished={() => {
    console.log("onApplePayFinished");
  }}
/>

Version

  • TPDirect: v2.17.0

Package Sidebar

Install

npm i expo-tappay-apple-pay

Weekly Downloads

18

Version

1.0.5

License

MIT

Unpacked Size

43.5 kB

Total Files

33

Last publish

Collaborators

  • stanma0716