Hi,
From my app, I am trying to load a HTTP site (http://m.tata-daewoo.com/) in a webview. I have configured my app’s info.plist file and added this site to ExceptionDomains in ATS with NSTemporaryExceptionAllowsInsecureHTTPLoads set to true.
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>m.tata-daewoo.com</key>
<dict>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
Still I'm unable to open this HTTP site from my app. I also treid using NSAllowsArbitraryLoadsInWebContent set to true, while removing ExceptionDomains. But that didn't work too.
I also tried running this command in terminal.
nscurl --ats-diagnostics --verbose http://m.tata-daewoo.com
But the Result is FAIL in all cases.
Any idea what can be done to get this working?
Thanks & Regards,
Suman