I'm sending with POST some data to server using NSURLSession
, I did it over HTTP, now I had to change to HTTPS. To my pleasant surprise all is working fine, which means that all I did was changing url from http to https.
But is it enough? Should I take any additional steps? Is it secured? The server has SSL certificate.
Asked
Active
Viewed 194 times
1

Lukasz 'Severiaan' Grela
- 6,078
- 7
- 43
- 79
-
Better you can check this link http://stackoverflow.com/questions/16918697/https-post-request-in-ios. – Ganesh Kumar Sep 16 '14 at 11:48
-
Thanks, this is about the invalid/untrusted certificate - but this is not the issue in my case as the certificate is valid and trusted (not self signed). I was wondering only if anything related to HTTPS/SSL communication then is handled transparently to me - as all I did was changing the protocol to HTTPS and all is working:) but is it secure:) – Lukasz 'Severiaan' Grela Sep 16 '14 at 11:50
-
Did you ever figure this out? I have the same question/concern. – Scooter Dec 27 '14 at 17:46