I have been using the following settings in build.settings
NSAppTransportSecurity =
{
NSExceptionDomains =
{
[“gsk-solutions.de”] =
{
NSIncludesSubdomains = true,
NSThirdPartyExceptionAllowsInsecureHTTPLoads = true,
NSExceptionAllowsInsecureHTTPLoads = true,
},
This has worked fine when I was connecting to http://www.thedomain.de by the following command
_G.theNetworkRequest = network.request( requestString, “GET”, serverCommunicate.networkListener, params );
requestString is the URL + the command.
When I changed the URL to “https://www.thedomain.de…” the command did not work.
What changes do I have to make to the build.settings to make it work ?