我们正在使用payfort作为我们应用程序中的付款网关,在沙箱环境中执行授权交易。 在授权过程中,我们使用以下参数生成签名
$signature_array = array(
'amount' => $ReservationAmount,
'currency' => 'SAR' ,
'merchant_identifier' => $postData['merchant_identifier'],
'access_code' => $postData['payfort_access_code'],
'command' => 'AUTHORIZATION',
'language' => $lang,
'merchant_reference'=>'reservation_'.$ReservationId,
'customer_email'=>$CustomerEmail
);
它会相应地生成签名。但是当生成的签名传递到授权请求中时,它会以签名不匹配的错误作为响应。我也已经针对payfort文档验证了参数
https://docs.payfort.com/docs/api/build/index.html#signature-pattern
但是交易仍未成功处理。 请为我提供适当的解决方案。