I have a running integration using ZIG , i have created an integration key for USD payment and tested and it was successful. The integration fails the moment the mode is changed from test to live. Am I missing something. please assist.
USD ecocash mobile payment failing in live mode
There is no error being generated maybe i need assistance to capture the error. , i tried using status to get response but the page is just blank as if there is not connection to the end point. language is php
Good day! Please make sure that your result URL is publicly accessible (i.e., localhost
won’t work). You can use tools like ngrok for development purposes. Additionally, to print errors from Paynow when initiating transactions, you can use var_dump($response->data());
Hi
Thank you with the var_dump($response->data()); advice. It turned out that my code was correct but the error was with invalid input. I did not have a guide . The is issue was with the use of amount outside the limit. I captured the error below
array(2) { [“status”]=> string(5) “Error” [“error”]=> string(82) “Amount is greater than maximum per transaction limit. Maximum limit for USD is 500” }