I am attempting to integrate worldpay with out React web app.
Incorporating the credit card functionality via Worldpay.useTemplateForm() is working fine but the next step is causing a problem.
To use 3DS we have to redirect away from our site to a bank controlled site and supply them with a URL to be redirected back to afterwards.
This is annoying in itself because we have a lot of saved state in our app and on returning all of this would be lost, however its not the biggest issue. After the 3DS they POST the form data back to us and React cannot accept post requests and the webpage simply displays 'CANNOT POST /'
Has anyone successfully implemented Worldpay 3DS into a React app??