我想将 2checkout 支付网关与我的网站集成。我开了一个沙盒账户。我制作了一个如下所示的 HTML 页面,它正在工作:
<form action='https://sandbox.2checkout.com/checkout/purchase' method='post'>
<input type='hidden' name='sid' value='901249407'>
<input type='hidden' name='quantity' value='1'>
<input type='hidden' name='product_id' value='1'>
<input type='hidden' name='currency_code' value='USD'>
<input name='submit' type='submit' value='Buy from 2CO' >
</form>
我需要在我的网站上用韩元支付。所以我将 currency_code 设置为根据此文档支持的 KRW: https ://www.2checkout.com/documentation/payment-api/create-sale
但它给出了Internal Server Error。
你们能建议我如何添加韩币支持吗?为什么会发生错误?