As mentioned in an earlier question, I'm working on integrating SAML2 SSO into an hybrid app. The redirect is working with this piece of code:
cordova.InAppBrowser.open(mx.appUrl + "SSO/", "_blank", "location=yes,toolbar=yes");
However, the specific SSO login page is not displaying in the inAppBrowser, while it is working in the web application. I'm pretty sure I've set the whitelisting correctly:
<access origin="*" />
When looking at the network requests of the mobile app however, I see that a 'SSO.saml2' request is there in red, contains the RelayState and SAMLRequest, but has 'provisional headers' (which should mean that the request is not actually fired). The elements just show a form with hidden fields...
Does anybody have a clue why the request is not made?