简体   繁体   English

贝宝notify_url并返回

[英]Paypal notify_url and return

Do anyone have similar experience? 有没有类似的经历?

I would like to know the difference between the notify_url and return in Paypal integration. 我想知道notify_url和Paypal集成中的return之间的区别。 As my understanding, Paypal will pass the transaction detail to notify_url for further action, but what if I set both notify_url and return in the form, how do I completing the notify_url and the call the return from php script? 据我了解,Paypal会将交易详细信息传递给notify_url以便采取进一步的措施,但是如果我同时设置notify_url和return形式,我该如何完成notify_url并调用php脚本的return呢?

Best regards, 最好的祝福,

Kelvin. 开尔文

The Return URL is where PayPal sends the buyer after they've completed everything on the PayPal pages. 完成买家在PayPal页面上的所有内容后,PayPal会将买家发送到Return URL。

In the case of Payments Standard that would typically happen after the payment is completed, and then the return URL may be used in conjunction with PDT (Payment Data Transfer) to pass data to the return URL so that you may display it for the buyer as a thank you / receipt page. 对于通常在付款完成后发生的“付款标准”,然后可以将返回URL与PDT(付款数据传输)结合使用,将数据传递到返回URL,以便您可以将买方显示为谢谢/收据页面。 With API calls the ReturnURL redirection from PayPal generally happens prior to the payment being completed. 使用API​​调用时,通常会在付款完成之前从PayPal进行ReturnURL重定向。

Notify URL is used with IPN (Instant Payment Notification) which is very similar to PDT except that IPN notifications are sent as a "silent POST" to your listener script on your server. 通知URL与IPN(即时付款通知)一起使用 ,这与PDT非常相似,不同之处在于IPN通知作为“无声POST”发送到服务器上的侦听器脚本。 These notifications will be sent in real-time with all transactions on your PayPal account so you can automate procedures for things like payments, refunds, disputes, cleared e-checks, etc. 这些通知将与您的PayPal帐户中的所有交易实时发送,因此您可以自动执行付款,退款,争议,已清除电子支票等操作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM