开发者

How to verify successful payment of paypal

开发者 https://www.devze.com 2023-04-01 17:13 出处:网络
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 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 sa开发者_如何学运维ndbox 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?


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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号