It complained ‘Supplied parameters do not match any signature of call target.’
import {PayPal, PayPalPayment, PayPalConfiguration, PayPalConfigurationOptions} from 'ionic-native';
// ...
export class PayPage {
paymentdata: PayPalPayment;
constructor(private navCtrl: NavController) {
// It complained 'Supplied parameters do not match any signature of call target.'
this.paymentdata = new PayPalPayment("50.00", "USD", "Awesome Sauce", "Sale");
}
}
Hello, I am new to use the Paypal plugin. I put your code in a button to trigger and test it in an android device. However, after press the button, the app crashed. So could you please provide me more detailed code for reference? thanks
I am using Ionic2, and need to integrate PayPal into my app.
My app needs to be able to send and receive payments to/from other PayPal accounts.
Is there a way for a Mobile App (Facilitator) to allow a Payer to make a payment to a Payee?
I have looked at the PayPal API’s, and I can find how to facilitate a Payer to make a payment a Payee, if the Payee is the Facilitator. As then it can register the Payees PayPal client Id. But in my case, the Payee does not supply their PayPal client Id (Facilitator & Payee are separate entities). i.e. The Payee is another PayPal Account.
UPDATE
It looks like PayPal Payouts allow payments to another PayPal account.
Do any Ionic compatible plugins provide an interface to this functionality?
UPDATE
This looks like it may be an option that can make payouts and is in nodejs, so will probably plug into an ionic app. I need to investigate a little further. Does anyone have any experience with this api? https://github.com/paypal/PayPal-node-SDK
I cannot install com.paypal.cordova.mobilesdk on my ionic app.
I had built android and ios platform.
During executing app,it shows this error message.
WARN: Install the PayPal plugin: 'ionic cordova plugin add com.paypal.cordova.mobilesdk’
So I tried this cli commmand but not working,any progress or bug not showing.
'ionic cordova plugin add com.paypal.cordova.mobilesdk’
Help me!