6
votes

I am trying to get the transaction info of paypal transaction that is passed to our website when customer is redirected to our website.

I turned auto-return and pdt in my sandbox paypal account setting. I posted a sample transaction to paypal and it replied to my return url with tx appended.

As found in some docs I did a curl req to https://www.paypal.com/cgi-bin/webscr and tried to get information by passing the req values as follows:

a.) tx = same one received from paypal
b.) at = pdt code given by paypal while turning pdt on
c.) cmd= "_notify-synch"

but in result i get String(0) "".

What I am missing?

1
What Paypal account type are you using? Payflow, Payflow Pro... etc.65Fbef05
I logged in to paypal sandbox account and found Account type: business type not payflow or payflow pro... from where can i check that?KoolKabin
If you don't know, then you probably aren't using Payflow.65Fbef05
It would say in your confirmation emails when you signed up for the payment account. The same messages should also have the links to your API.65Fbef05
since my account is pre-configured and automatically created it has api enabledKoolKabin

1 Answers

7
votes

I'd highly suggest looking into using PayPal Instant Payment Notifications (IPN). PayPal IPN allows you to (asynchronously) process order information while not having to depend on the buyer to return to your website to complete the order.

You can use IPN by setting up a script which receives this (POST) data from PayPal. In addition, you must include the following code in your button and/or API call(s):

For Website Payments Standard (where "xxxxxxxx" is the full URL to your IPN script):
input type="hidden" name="notify_url" value="xxxxxxxx"

For Express Checkout: Include NOTIFYURL=xxxxxxxx in your SetExpressCheckout and DoExpressCheckoutPayment API call

For Website Payments Pro Include NOTIFYURL=xxxxxxxx in your DoDirectPayment API call

You can find sample code, documentation and further information on PayPal IPN at https://www.paypal.com/ipn

Additionally, here's an article with additional steps on verifying the authenticity of IPN messages at https://www.x.com/developers/community/blogs/ppmtsrobertg/securing-your-instant-payment-notification-ipn-script