snipking / cordova-plugin-x-alipay

💰This is a alipay cordova-plugin.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cordova-plugin-x-alipay

💰This is a alipay plugin of cordova.

Feature

  • Ali payment for app.

Install

cordova plugin add cordova-plugin-x-alipay --variable aliappid=YOUT_ALIPAYAPPID

or

ionic plugin add cordova-plugin-x-alipay --variable aliappid=YOUT_ALIPAYAPPID

Usage

var params = {
    order: 'alipay_sdk=alipay-sdk-java-dynamicVersionNo&app_id=2017062907602740&...', // this string return by back-end
}

xAlipay(params, function() {
    console.log('success');
}, function (error) {
    console.log(error);
});

Events

  • XAlipay_StandbyCallback_Success for iOS only. Will call when app launch alipay and self been killed. More Info
  • XAlipay_StandbyCallback_Error for iOS only. Will call when app launch alipay and self been killed. More Info

Example

document.addEventListener('XAlipay_StandbyCallback_Success', function(event){
    alert(event);
}, false);

LICENSE

MIT LICENSE

About

💰This is a alipay cordova-plugin.


Languages

Language:Objective-C 71.4%Language:Java 28.6%