我正在尝试实施 EBS 支付通道。
我填写了表格中的所有强制性输入。
代码
<?php
$hash = "ebskey"."|".$_POST['account_id']."|".$_POST['amount']."|".$_POST['reference_no']."|".$_POST['return_url']."|".$_POST['mode'];
$secure_hash = md5($hash);
?>
<input name="secure_hash" type="hidden" size="60" value="<?php echo $secure_hash;?>" />
但我得到以下错误。
Oops!
It seems an error has occured, the page you are trying to reach is not accessible.
Error!
SecureHash validation failed
错误是什么意思?