下午好,
我试图从我的ASP.NET网络应用程序发送POST请求到paypal API来处理付款。下面的代码是开发人员网站生成的标准按钮代码,我添加了一些参数。
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="hidden" name="business" value="testseller@mydomain.co.uk" />
<input type="hidden" name="hosted_button_id" value="myvalue"/>
<input type="hidden" name="item_name" value="<%:Article%>"/>
<input type="hidden" name="amount" value="<%Price%>"/>
<input type="hidden" name="currency_code" value="GBP"/>
<input type="image" src="https://www.sandbox.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"/>
<img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"/>
</form>
然而,当paypal支付屏幕加载时,它已将成本恢复为0.01美元,似乎忽略了我的参数。在检查时,<%:Price%>
变量正如我所期望的那样读取。在上面的HTML中,我有什么明显的错误吗?
答案 0 :(得分:0)
如果您使用保存在PayPal端的托管按钮,则无法编辑按钮代码。 PayPal将忽略添加/更新按钮代码的任何其他变量。如果要将动态变量传递给PayPal结束,则应使用非托管按钮。