I am trying to integrate a payy payment gateway, and I have included all the required fields, but it showed me an error after redirecting to the official payu website.
Error. We are sorry we are unable to process your payment.
Checksum Failed. Please contact your merchant.
I have included the following fields:
<input type="hidden" name="key" value="key here" />
<input type="hidden" name="txnid" value="67c778f0eed" />
<input type="hidden" name="hash" value="sdfdsfsdfsdfgsdrgsdf"/>
<input type="hidden" class="user2" name="firstname" value="sunil">
<input type="hidden" name="surl" value="abc.com" size="64" />
<input type="hidden" name="furl" value="abc.com" size="64" /></td>
<input type="hidden" name="service_provider" value="payu_paisa" size="64" />
<input id="pay_amoumt" type="hidden" name="amount" value="10">
<input id="pay_amoumt" type="hidden" name="productinfo" value="general">
I assigned a static string for the hash key. This is problem? Or is there something else I should do?
source
share