我正在为购物车创建一个 cms。我在产品中添加了“立即购买”按钮。但是在客户完成交易后,我需要获取商品编号和他购买了多少这种商品,以及他的付款金额是多少。Paypal 将客户返回到成功交易页面,但我想知道如何收集这些数据?
问问题
537 次
2 回答
1
您也可以使用 IPN,而不是使用返回 URL。使用返回 URL,如果买家由于某种原因没有返回您的网站,例如他们提前关闭浏览器或退出流程,您将不会将该数据返回到您的网站。如果您使用 IPN,无论买家是否返回或现在,数据都将发布到您的网站。此外,使用 IPN,您可以查看您的 IPN 历史记录中发送的内容,甚至可以在最长 28 天内重新发送 IPN。
于 2013-06-27T12:59:11.383 回答
0
The following steps working fine for me 1-> Save the data like product code, price and detail in separate table before submitting to paypal. Save the id in session. 2-> Give the hidden input "return" like
<input type="hidden" name="return" value="your site url/paypal_success.php">
3->Collect the data from the table with session id in paypal_success.php.
于 2013-06-27T09:12:28.210 回答