I wish to know how to link my apps to PayPal payment using the PayPalWrapper.
I have set up a sandbox account at http://developer.paypal.com/developer/account
I set up some sandbox business account for testing. From PHP I can send the request for payment using the following parameters
METHOD' => 'SetExpressCheckout',
USER' => $api_username,
PWD' => $api_password,
SIGNATURE' => $api_signature,
VERSION' => $api_version,
PAYMENTREQUEST_0_PAYMENTACTION'=>'Sale',
PAYMENTREQUEST_0_AMT'=>$amount,
RETURNURL'=>HOST.'/web/paypal_express_paid.php',
CANCELURL'=>HOST.'system/pp_e/express3.php'
username, password and signature are obtained from paypal site. The others are set up by my program.
May I know how to set up these parameters using PayPayWrapper to make a request for payment.
Thank you very much.
I have set up a sandbox account at http://developer.paypal.com/developer/account
I set up some sandbox business account for testing. From PHP I can send the request for payment using the following parameters
METHOD' => 'SetExpressCheckout',
USER' => $api_username,
PWD' => $api_password,
SIGNATURE' => $api_signature,
VERSION' => $api_version,
PAYMENTREQUEST_0_PAYMENTACTION'=>'Sale',
PAYMENTREQUEST_0_AMT'=>$amount,
RETURNURL'=>HOST.'/web/paypal_express_paid.php',
CANCELURL'=>HOST.'system/pp_e/express3.php'
username, password and signature are obtained from paypal site. The others are set up by my program.
May I know how to set up these parameters using PayPayWrapper to make a request for payment.
Thank you very much.