Hi all,
I am not too familiar with SSL.
I have a simple dreamlo leaderboard that remembers the best timing and username for each level.
Was previously using network.request with http to my dreamlo url ( works fine ).
Read that ios will require network requests to use https in the near future.
Have enabled https requests on my dreamlo url.
My question is:
besides changing the url in the network.request call, what else needs to be done ?
I have this currently in my build.settings
NSAppTransportSecurity = { NSExceptionDomains = { ["dreamlo.com"] = { NSIncludesSubdomains = true, NSThirdPartyExceptionAllowsInsecureHTTPLoads = true, }, }, },
Does this need to be removed now?
Using simulators I get “Certificate required” errors and from an android device I get “Hostname not verified certificate required” errors.
Could not find documentation on additional steps that need to be taken.
Thanks in advance!