2015-10-14 46 views
0

我正在使用貝寶模擬​​器來測試我的IPN頁面。但下拉菜單隻允許美元,我在IPN中的第一張支票是確保付款方式爲英鎊。PayPal IPN模擬器不允許使用英鎊?

任何解決方法?

我越來越:

IPN was sent and the handshake was verified. 

回答

1

目前僅在USDIPN 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>