WeChat Mini Program
Accept WeChat Pay from your WeChat mini program, where you control and build the integration by yourself using WeChat Mini Program Payment API.
Step 1. Initialize a payment Intent
After the customer adds items into their cart and checkout, you should create a payment intent on your server-side. You will need to pass the id
and client_secret
in response to a mini-program for the customer to complete the payment.
Step 2. Accepting payments
When a customer selects Pay in WeChat mini program, you may call the following API endpoints to get the data which you need to call WeChat Mini program API (WeChat Mini program API from the response.
- Obtain required mini program payment data to process payment
Before confirming to pay with WeChat Pay in Mini Program, you need the open_id
of the customer.
To get an open ID, follow below instructions:
- Invoke wx.login and then get a code from the response.
- Invoke jscode2session from server-side to get an open ID
After confirming, you will get next_action
in response.
- Pass the data to WeChat Mini Program Payment API
Pass data in next_action you get in the previous step to WeChat Mini Program Payment API wx.requestPayment . After the customer completes payment, WeChat will redirect the customer to your mini program and do a callback.
- Wait for notification
Airwallex will notify you of the payment result asynchronously via webhook. Please refer to webhook documentation to configure your webhook accordingly. Although subscribing to different events is optional, it is recommended to subscribe to the ‘payment_intent.succeeded’ which indicates that the shopper has successfully paid for an order via WeChat Pay.
- Query the PaymentIntent status (Optional)
You may also query the status of a payment anytime via the PaymentIntents API.