Inappbrowser redirect capabilities

Hi. I try to integrate payment system to my project. How can send credit cart information to Bank’s api and how can I recive the result? If I use ajax, how can I handle 3D secure messaging step? Maybe I send the flow to inappbrowser, but I think it has not header redirect capabilities. When bank send authorization data how can i handle?

Here is a result data sample that the bank send:

<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body onload="OnLoadEvent();"> <form name="downloadForm" action="https://www.yanbakkal.com/services_v2/customer-order-payment-fail/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyaWQiOiI1MDIwIn0.H_vnh0Gly_L_9jjAnvq91JkQhiQIMrujfhM4KRjp4xU" method="POST"> <input type="hidden" name="AuthenticationResponse" value="xml data"> <!-- To support javascript unaware/disabled browsers --> <noscript> <center>Please click the submit button below.<br> <input type="submit" name="submit" value="Submit"></center> </noscript> </form> <script language="Javascript"> function OnLoadEvent() {document.downloadForm.submit();} </script></body></html>

I am not sure it is a good idea to implement such payment in inapp browser. At least, because user doesnt see what site is it and is it secured or not. It is better to open it in normal browser.

And app for sure, I believe, shouldn’t handle results from bank too. It should be handled by real online server