我使用paypal模拟器测试我的IPN页面。但是下拉菜单只允许美元,我在IPN的第一次检查是确保付款方式是英镑。
有任何解决方法吗?
我得到了:
IPN was sent and the handshake was verified.
答案 0 :(得分:1)
目前IPN simulator仅支持<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="XXX.com">
<input type="hidden" name="item_name" value="test">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="amount" value="1.00">
<input type="hidden" name="notify_url" value=<YOUR_IPN_FILE>
<input type="image" src="https://www.sandbox.paypal.com/en_GB/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>
如果您想使用GBP,可以使用按钮代码进行测试。
例如:
ngGridAutoRowHeightPlugin