Call Payment for Mini Program
Update Time:2025.02.20API for calling payment from mini program frontend
API intro
Applicable object: Common mode Institutional mode
Request Parameters
The fields for generating signature when calling payment in Mini Program:
Name | ID | Type | Required | Description |
---|---|---|---|---|
Mini Program ID | appId | String(16) | Yes | This ID is issued after merchants apply for Mini Program, it should be the one which calls payment. |
Timestamp | timeStamp | String(32) | Yes | Specifies the current time. For more information, see Timestamp in Parameter Specifications. |
Random String | nonceStr | String(32) | Yes | 32 characters or fewer. For more information, see Random String Algorithm. |
Order Extension String | package | String(128) | Yes | Specifies the parameter value (prepay_id) returned by the Unified Order API. The submission format is "prepay_id=***". |
Sign type | signType | String(32) | Yes | Currently HMAC-SHA256 and MD5 are supported, default is MD5. This parameter must be submitted if HMAC-SHA256 is chosen |
Example:
Please refer to 【Section Signature Algorithm】 for more information.
Call function wx.requestPayment(OBJECT) to load payment.
Please refer to the description for parameter OBJECT:
Parameter | Type | Required | Description |
---|---|---|---|
timeStamp | String | Yes | Specifies the current time. For more information, see Timestamp in Parameter Specifications. |
nonceStr | String | Yes | 32 characters or fewer. |
package | String | Yes | Specifies the parameter value (prepay_id) returned by the Unified Order API. The submission format is "prepay_id=***". |
signType | String | Yes | MD5 or HMAC-SHA256 |
paySign | String | Yes | Signature generated with the above parameters |
success | Function | No | Callback function if calls successfully |
fail | Function | No | Callback function if calls failed |
complete | Function | No | Callback function when calling complete (execute both when success and fail) |
Return Data
Field Name | Return Value | Description |
---|---|---|
success | requestPayment:ok | Calling payment is successful. |
fail | requestPayment:fail cancel | Payment is cancelled by customer. |
fail | requestPayment:fail (detail message) | Calling payment is failed, the detailed information can be found in parameter value: detail message |
Example: