Skip to content

YouhuiTrading/airwallex-payment-ios

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

940 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Airwallex iOS SDK

Pod Version Pod Platform Pod License CocoaPods compatible

Overview

The Airwallex iOS SDK is a framework for integrating easy, fast and secure payments inside your app with Airwallex. It provides simple functions to send sensitive credit card data directly to Airwallex, it also provides a powerful, customizable interface for collecting user payment details.

We support the following localizations: English, Chinese Simplified, Chinese Traditional, French, German, Japanese, Korean, Portuguese Portugal, Portuguese Brazil, Russian, Spanish, Thai

Table of contents

Getting Started

Follow our integration guide and explore the example project to quickly set up payments using the Airwallex SDK.

Tip

Updating to a newer version of the SDK? See our migration guide

Requirements

  • iOS 13.0+
  • Xcode 15.4+ (For older Xcode versions, refer to release 5.4.3)

Examples

The Examples can be run on the latest Xcode. To run the example app, you should follow these steps.

  • Clone source code
git clone git@github.com:airwallex/airwallex-payment-ios.git
  • Install dependencies and open project

Make sure you have installed Cocoapods and then run the following command in the project directory:

pod install

Tip

Update key file (Optional)

  • In the Examples/Keys folder, edit Keys.json with proper keys.
  • Build and run Examples schema

The key file provides default values for settings. You can update these settings anytime using the in-app settings screen.

Integration

Installation

Swift Package Manager

Airwallex for iOS is available via Swift Package Manager. To integrate it into your project, follow these steps:

  1. Follow Apple's guide on how to add a package dependency in Xcode.

  2. Use the following URL for the Airwallex package: https://github.com/airwallex/airwallex-payment-ios

  3. Ensure you specify version 6.1.1 or later.

You can add Airwallex for a comprehensive integration that includes everything except WeChat Pay. Alternatively, you can selectively add specific products to your project for a more modular setup, depending on your payment needs:

  • AirwallexPaymentSheet: For UI integration. 
  • AirwallexPayment: For low-level API integration.
  • AirwallexWeChatPay: Required for WeChat Pay integration.

Size Impact

Integration Style Components Included IPA Size Increase
Low-Level API Integration AirwallexCore
AirwallexPayment
1.20 MB
UI Integration AirwallexCore
AirwallexPayment
AirwallexPaymentSheet
2.74 MB
Full Integration AirwallexCore
AirwallexPayment
AirwallexPaymentSheet
AirwallexWeChatPay
3.53 MB

The IPA size increases shown above reflect the additional archive size when integrating the Airwallex SDK using Swift Package Manager (SPM) into an otherwise empty project, measured for each integration style.

CocoaPods

Airwallex for iOS is available via CocoaPods.

You can add Airwallex for a comprehensive integration that includes everything except WeChat Pay:

pod 'Airwallex', '~> 6.1.1'

Alternatively, you can selectively add specific products to your project for a more modular setup, depending on your payment needs:

pod 'Airwallex/AirwallexPaymentSheet' # For UI integration. 
pod 'Airwallex/AirwallexPayment' # For low-level API integration
pod 'Airwallex/AirwallexWeChatPay' # Required for WeChat Pay integration

Run the following command:

pod install

Required Setup

When your app starts, configure the SDK with mode.

Airwallex.setMode(.demoMode) // .demoMode, .stagingMode, .productionMode

Customer ID

Important

  • Required for recurring payment
  • Required for recurring with intent payment
  • For one-off payment
    • Required for card saving payment
    • Optional for other cases

Generate or retrieve a customer ID for your user on your server-side. Refer to the Airwallex API Doc for more details


Payment session

  • If you want to make a one-off payment, create a one-off session.
let session = AWXOneOffSession()
session.countryCode = "Your country code"
session.billing = "Your shipping address"
session.returnURL = "App return url"
  • If you want to make a recurring payment, create a recurring session.
let session = AWXRecurringSession()
session.countryCode = "Your country code"
session.billing = "Your shipping address"
session.returnURL = "App return url"
session.setCurrency("Currency code")
session.setAmount("Total amount")
session.setCustomerId("Customer ID")
session.nextTriggerByType = "customer or merchant";
session.merchantTriggerReason = "Unscheduled or scheduled";
  • If you want to make a recurring payment with intent, create a recurring with intent session.
let session = AWXRecurringWithIntentSession()
session.countryCode = "Your country code"
session.billing = "Your shipping address"
session.returnURL = "App return url"
session.nextTriggerByType = "customer or merchant"
session.merchantTriggerReason = "Unscheduled or scheduled"

Tip

You only need to explicitly set the customer ID for a recurring session. For one-off session and recurring-with-intent session, the customer ID is automatically retrieved from session.paymentIntent


Payment Intent

Important

Required for one-off payemnt Required for recurring with intent payment Not needed for recurring checkouts.

Create payment intent on your server-side and then pass the payment intent to the mobile-side to confirm the payment intent with the payment method selected.

Refer to the Airwallex API Doc for details

let paymentIntent = "The payment intent created on your server"
// update session you created above
session.paymentIntent = paymentIntent

Client Secret

  • For one-off and recurring-with-intent payment, use paymentIntent.clientSecret
AWXAPIClientConfiguration.shared().clientSecret = paymentIntent.clientSecret
  • For recurring payment, you'll need to generate client secret with customer ID on your server-side and pass it to AWXAPIClientConfiguration.

Refer to the Airwallex API Documentation for details. Airwallex API Doc

let clientSecret = "The client secret generated with customer ID on your server"
AWXAPIClientConfiguration.shared().clientSecret = clientSecret

Optional Setup


WeChat Pay

  • make sure you add dependency for AirwallexWeChatPay (Swift package manager) or Airwallex/AirwallexWechatPay (Cocoapods)
  • setup WechatOpenSDK following the Wechat document
class AppDelegate: UIResponder, UIApplicationDelegate {
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        WXApi.registerApp("WeChat app ID", universalLink: "universal link of your app")
        return true
    }
    
    func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
        return WXApi.handleOpen(url, delegate: self)
    }
}

extension AppDelegate: WXApiDelegate {
    func onResp(_ resp: BaseResp) {
        if let response = resp as? PayResp {
            switch response.errCode {
                // handle payment result
            }
        }
    }
}

After completing payment, WeChat will be redirected to the merchant's app and do a callback using onResp(), then it can retrieve the payment intent status after the merchant server is notified, so please keep listening to the notification.

Note

We use internal dynamic framework WechatOpenSDKDynamic.xcframework for WeChat Pay integration. which is a dynamic framework build from original WechatOpenSDK.xcframework 2.0.4. By doing this, we can

  1. Remove unsafe flag -ObjC, -all_load from SPM target AirwallexWeChatPay
  2. Stripe architecture armv7 and i386 which is no longer needed for modern apps.

Apple Pay

The Airwallex iOS SDK allows merchants to provide Apple Pay as a payment method to their customers.

  • Make sure Apple Pay is set up correctly in the app.
  • Make sure Apple Pay is enabled on your Airwallex account.
  • Prepare the Merchant Identifier and configure applePayOptions on the payment session object.

You can customize the Apple Pay options to restrict it as well as provide extra context. For more information, please refer to the AWXApplePayOptions.h header file.

let options = AWXApplePayOptions(merchantIdentifier: applePayMerchantId)
options.additionalPaymentSummaryItems = [
    .init(label: "goods", amount: 10),
    .init(label: "tax", amount: 1)
]
options.merchantCapabilities = [.threeDSecure, .debit]
options.requiredBillingContactFields = [.postalAddress]
options.supportedCountries = ["AU"]
options.totalPriceLabel = "COMPANY, INC."

let session = AWXOneOffSession()
//  configure other properties
...
session.applePayOptions = AWXApplePayOptions(merchantIdentifier: "Your Merchant Identifier")// required for Apple Pay

Important

Be aware that we currently support the following payment networks for Apple Pay:

  • Visa
  • MasterCard
  • ChinaUnionPay
  • Maestro
  • Amex
  • Discover
  • JCB

Coupon is also not supported at this stage.

UI Integration

Launch Payment Sheet (Recommended)

Note

This is recommended usage, it builds a complete user flow on top of your app with our prebuilt UI to collect payment details, billing details, and confirming the payment.

Make sure you add dependency for Airwallex or AirwallexPaymentSheet. Upon checkout, use AWXUIContext to present the payment flow where the user will be able to select the payment method.

AWXUIContext.launchPayment(
    from: "hosting view controller which also handles AWXPaymentResultDelegate",
    session: "The session created above",
    filterBy: "An optional array of payment method names used to filter the payment methods returned by the server",
    launchStyle: ".push/.present",
    layout: ".tab/.accordion"
)

We provide tab and accordian styles for our payment sheet:


Launch Card Payment Directly

AWXUIContext.launchCardPayment(
    from: "hosting view controller which also handles AWXPaymentResultDelegate",
    session: "The session created above",
    supportedBrands: "accepted card brands, should not be empty"
)

Tip

If you want to show card payment only but still want to be able to pay with saved cards, you can launch payment sheet by passing [AWXCardKey] as parameter of filterBy:

AWXUIContext.launchPayment(
    from: "hosting view controller which also handles AWXPaymentResultDelegate",
    session: "The session created above",
    filterBy: [AWXCardKey]
)

Launch Payment Method by Name

AWXUIContext.launchPayment(
    name: "payment method name",
    from: "hosting view controller",
    session: "The session created above",
    paymentResultDelegate: "object handles AWXPaymentResultDelegate"
)

Tip

Available payment method names can be found in Airwallex API doc


Customize Theme Color (optional)

You can customize theme color of the payment sheet

AWXTheme.shared().tintColor = .red

Low-level API Integration

Make sure you add dependency for Airwallex or AirwallexPayment. You can build your own entirely custom UI on top of our low-level APIs.

Note

You still need all required steps listed in Required Setup section above to set up configurations, payment intent and payment session.

you may find Airwallex API Docs useful if you are using this integration style


Create PaymentSessionHandler

let paymentSessionHandler = PaymentSessionHandler(
    session: "The session created above", 
    viewController: "hosting view controller which also handles AWXPaymentResultDelegate"
)
// store the `paymentSessionHandler` in your view controller or class that is tied to your view's lifecycle
self.paymentSessionHandler = paymentSessionHandler

Pay with card

// Confirm intent with card and billing
paymentSessionHandler.startCardPayment(
    with: "The AWXCard object collected by your custom UI",
    billing: "The AWXPlaceDetails object collected by your custom UI"
)

Pay with saved card (consent)

  • Pay with consent object - Confirm intent with a payment consent object AWXPaymentConsent)
paymentSessionHandler.startConsentPayment(with: "payment consent")
  • Pay with consent ID - Confirm intent with a valid payment consent ID only when the card is save as network token
paymentSessionHandler.startConsentPayment(withId: "consent ID")

Pay with Apple Pay

Important

Make sure you have Set Up Apple Pay correctly.

paymentSessionHandler.startApplePay()

Pay with Redirect

Important

You should provide all required fields defined in "/api/v1/pa/config/payment_method_types/${payment method name}" in additionalInfo

paymentSessionHandler.startRedirectPayment(
    with: "payment method name",
    additionalInfo: "all required information"
)

Handle Payment Result

Regardless of what kind of integration style you choose, you need to handle the payment result in the callback of AWXPaymentResultDelegate.

func paymentViewController(_ controller: UIViewController?, didCompleteWith status: AirwallexPaymentStatus, error: Error?) {
    // call back for status success/in progress/ failure / cancel
}

Tip

If the payment consent is created during payment process, you can implement this optional function to get the ID of this payment consent for any further usage.

func paymentViewController(_ controller: UIViewController?, didCompleteWithPaymentConsentId paymentConsentId: String) {
    // To do anything with this ID.
}

Contributing

We welcome contributions of any kind including new features, bug fixes, and documentation improvements. The best way to contribute is by submitting a pull request – we'll do our best to respond to your patch as soon as possible. You can also submit an issue if you find bugs or have any questions.

About

Airwallex PA iOS SDK

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Swift 50.4%
  • Objective-C 48.5%
  • Other 1.1%