Paypal IPN模拟器不允许英镑


Paypal IPN Simulator not allowing for GBP?

我正在使用paypal模拟器来测试我的IPN页面。但是下拉菜单只允许美元,我在IPN上的第一个检查是确保支付方式是英镑。

工作区吗?

我:

IPN was sent and the handshake was verified.

目前IPN模拟器只支持USD如果您想使用英镑,您可以使用您的按钮代码进行测试。

,

<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>