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