我刚刚设法为Phonegap设置了Paypal插件(Iphone - https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/PayPalPlugin),该插件适用于个人付款。
但有人知道这种方法是否可用于触发定期付款?
这是当前的触发代码 -
function onDeviceReady()
{
try {
// do your thing!
document.addEventListener(PayPal.PaymentEvent.Success, onPaymentSuccess,false);
document.addEventListener(PayPal.PaymentEvent.Canceled, onPaymentCanceled,false);
document.addEventListener(PayPal.PaymentEvent.Failed, onPaymentFailed,false);
window.plugins.paypal.prepare(PayPal.PaymentType.DONATION);
window.plugins.paypal.setPaymentInfo({
paymentCurrency : "USD",
paymentAmount : "00.10",
itemDesc : "network cable",
recipient : "pabs_1355160222_biz@liquidsolution.co.uk",
merchantName : "test Account"
});
} catch (e) {
debug.error(e);
}
}
答案 0 :(得分:0)
初始插件有问题。它已重新编写,现在位于http://github.com/SnareChops/PayPalPlugin,并已在沙盒模式下成功测试。
就目前使用PayPal的PayPal-SDK而言,目前无法进行定期付款。如果他们发布包含此功能的更新SDK,则会将其添加到插件中。