0

我刚刚设法为Phonegap(Iphone - https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/PayPalPlugin)设置了Paypal插件,它适用于个人支付。

但是有谁知道这种方法是否可以用来触发定期付款?

这是当前的触发代码 -

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);
    }
}
4

1 回答 1

0

最初的插件有问题。它已被重新编写,现在位于http://github.com/SnareChops/PayPalPlugin,并已在沙盒模式下成功测试。

就定期付款而言,目前使用 PayPal 提供的当前 PayPal-SDK 是不可能的。如果他们发布包含此功能的更新 SDK,它将被添加到插件中。

于 2013-06-08T20:36:51.473 回答