您如何将变量传递给不是固定金额的 PayPal。例如,从篮子中发送“GrandTotal”,而不仅仅是在 asp.net 中输入诸如 50.00 之类的金额。
问问题
512 次
2 回答
0
Paypal offers a way to transfer data from third party carts:
https://www.paypal.com/cgi-bin/webscr?cmd=_pdn_howto_checkout_outside
Essentially your server will have to generate input fields with value and post to Paypal and Paypal will read the data and recreate the cart on their end.
于 2013-02-18T21:16:13.037 回答
0
如果您对 Web 服务 API 感到满意,我建议您使用Express Checkout。它使您可以更直接地访问系统,并允许您根据需要自定义内容。
无论哪种方式,您都可以实现您的目标。
于 2013-02-19T03:04:37.287 回答