dreamlo with SSL

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!

i have used ur plugin in other engine also. all the best for make this plugin for work in this engine!

im waiting for it

By the end of 2016 all updates and new app need to have app transport security enabled. For Dreamlo you should be able to get ssl for a one time fee of 5$

Thanks for the reply scott.

Yes I have paid the one time fee and enabled https.

Just wondering about the additional steps needed (if any) on the corona side.

Damn think it’s my mistake.

I didn’t notice that when I enabled https there is “www.” appended to the front of all the request URLs now.

Thanks!

If you use “https://” you do not need an exception in your build.settings. Exceptions are only needed for “http:” connections.

Rob

In my opinion, this is the best option, also, changing from http:// to https:// is not very difficult.

http://stackoverflow.com/questions/10489895/http-to-https-through-htaccess

If you are using mac you might need to enable the visibility of hidden files.

Thanks guys it is working fine now after adding the “www.” to the front of the url and removing the exceptions in the build settings.

i have used ur plugin in other engine also. all the best for make this plugin for work in this engine!

im waiting for it

By the end of 2016 all updates and new app need to have app transport security enabled. For Dreamlo you should be able to get ssl for a one time fee of 5$

Thanks for the reply scott.

Yes I have paid the one time fee and enabled https.

Just wondering about the additional steps needed (if any) on the corona side.

Damn think it’s my mistake.

I didn’t notice that when I enabled https there is “www.” appended to the front of all the request URLs now.

Thanks!

If you use “https://” you do not need an exception in your build.settings. Exceptions are only needed for “http:” connections.

Rob

In my opinion, this is the best option, also, changing from http:// to https:// is not very difficult.

http://stackoverflow.com/questions/10489895/http-to-https-through-htaccess

If you are using mac you might need to enable the visibility of hidden files.

Thanks guys it is working fine now after adding the “www.” to the front of the url and removing the exceptions in the build settings.