Is there any way of altering the behaviour, to validate the signature differently?
The system I am integrating with creates the signature based on other data it sends back, so I need to validate against the password I send to them, and the airbillnumber they respond with;
This is calculated by adding the API Key used and the returned airbill number and hashing with MD5
signature = MD5 (password + airbillnumber)
Is there any way of altering the behaviour, to validate the signature differently?
The system I am integrating with creates the signature based on other data it sends back, so I need to validate against the password I send to them, and the airbillnumber they respond with;
Many thanks!