I need to develop a payment solution using PayPal APIs. Actually I started the documentation phase ( on http://developers.paypal.com )
I found the REST APIs understandable, I still don't have an idea how to implement them with SpringMVC so I'm just…
I need a function that will correctly parse NVP into PHP array. I have been using code provided by paypal but it did not work for when string length was specified next to the name.
Here is what i have so far.
private function parseNVP($nvpstr)
{
…
I am basically trying to use the PAY call of Adaptive Payments to programmatically and immediately send funds from my own paypal account to other accounts. According to the documentation, so long as I specify the senderEmail (my own paypal address,…
Im using Paypal recurring payments and Im having some issues understanding when is my first charge occurring.
Im using Sandbox currently so paypal does not really send me an overview of the payment that is really happening.
I would like to create a…
Quick Summary:
I'm developing an e-commerce site using PHP. It uses PayPal to make payments. I have been successfully using (from sending the request string via SetExpressCheckout to DoExpressCheckoutPayment to GetExpressCheckoutDetails to storing…
I'm trying to dynamically update a PayPal hosted button but getting an error that
The button type specified is invalid.
I used the PPHttpPost function (which is probably fine), taken from here:…
Looking at the RequestPermissions API, it says that the scope is supposed to be a string. However, I have been unsuccessful in finding out how to specify more than one scope (specifically EXPRESS_CHECKOUT and REFUND). Comma-separated, semi-colon,…
I downloaded paypalplatform.php, can't remember where from, but it gives me a nice little function which allows me to check the state of a payment:
CallPaymentDetails( $payKey, $transactionId, $trackingId );
This returns lots of useful data like…
I want to integrate paypal into my apps. I was close to getting there until i saw this : https://developer.paypal.com/webapps/developer/support/faq#non-US-dev
Paypal does not allow non-US developer to use the REST API. So the choice that I am left…
Hi I am using PayPal with NVP,
Following is the request to SetExpressCheckout
string returnURL = "http://localhost:50325/GetExpressCheckout.aspx" + "?amount=" + Amount + "¤cy=AUD";
string cancelURL = returnURL.Replace("ReviewOrder",…
I followed https://www.paypal-labs.com/integrationwizard/ecpaypal/main.php to implement paypal sandbox account in my application. My code is spanned in 3 jsp pages such as index.jsp -> expresscheckout.jsp -> paypalfunctions.jsp…
I'm trying to use AdaptivePayments to send funds from one user to another user via my site, so I can check whether or not they've actually gone through with the payment. The payment goes through, but they're not returned to my site so I can't track…