Reputation: 270
When I hit the login server, I get this error message:
NSURLConnection finished with error - code -1202.
I have added App transport security in my Plist and I have allowed all the invalid certificates to YES.
Upvotes: 9
Views: 10653
Reputation: 3708
Acc to Google Search -1202 = NSURLErrorServerCertificateUntrusted:
Check validity of certificate in server side also, as this can be one possibility for this error.
Also, NSURLConnection
is depecrated i suggest update it via NSURLSession
Upvotes: 4