在 realexpayment 系统中处理付款时,我收到以下错误:
320
An error has occurred processing your request. Please contact the merchant whose goods or services you are purchasing quoting the following error number: 61335
有谁知道它可能是什么?
我正在发布这样的参数
<form method="POST" action="https://hpp.sandbox.realexpayments.com/pay">
<input type="hidden" name="TIMESTAMP" value="timestampvalue">
<input type="hidden" name="MERCHANT_ID" value="mymerchantid">
<input type="hidden" name="ORDER_ID" value="orderid">
<input type="hidden" name="AMOUNT" value="amount">
<input type="hidden" name="CURRENCY" value="currency(GBP)">
<input type="hidden" name="SHA1HASH" value="hashvalue">
<input type="hidden" name="AUTO_SETTLE_FLAG" value="1">
<input type="submit" value="Click To Pay">
</form>
我通过这个算法制作的哈希值:sha1(sha1(timestamp.merchantid.orderid.amount.currency).secretkey)