POST method for eWay payment gateway receiving inccorect result

I use the gateway to pay eWay for this I used the URL for the POST data https://secure-au.sandbox.ewaypayments.com/Process

But we get this answer: {"Message": "Not found", "Errors": null}

and after that, when I publish at this URL: https://api.sandbox.ewaypayments.com/GetAccessCodeResult.json gets the correct json, but all the data is null or random data and get ResponseMessage = S5099 (as I saw, that the document for S5099 is not completed (the access code is in progress / incomplete), but I already get the access code with this URL https://api.sandbox.ewaypayments.com/CreateAccessCode.json )

All of the above processes are associated with a SOAP call for the eWay payment gateway.

+4
source share
1 answer
  • 1) eWAY allows many methods to call the gateway API, it does not depend only on SOAP.
  • 2) After creating the access code from the first step. Pls confirms that you are sending all the necessary information to https://secure-au.sandbox.ewaypayments.com/Process. (See Page 30 of http://www.eway.com.au/docs/api-documentation/rapid-3-0-documentation-au.pdf ).
  • 3) After step 2, you will receive a message when you are currently receiving.
  • 4) To get the result of the access code, you must use the "GET" method. This does not allow the use of the POST method. (See page 33 above pdf.)
  • 5) Make sure that you use the correct username and password for sandboxes, otherwise it will give you a system error, since you are in the opposite direction.
0
source

All Articles