Praveen Kokkula
Praveen Kokkula

Reputation: 270

NSURLConnection finished with error - code -1202

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

Answers (1)

Abhishek Thapliyal
Abhishek Thapliyal

Reputation: 3708

Acc to Google Search -1202 = NSURLErrorServerCertificateUntrusted:

Help Links:

  1. HTTPS with NSURLConnection - NSURLErrorServerCertificateUntrusted

  2. NSURLConnection Error code (-1202,1012)

REF : Undocumented NSURLErrorDomain error codes (-1001, -1003 and -1004) using StoreKit

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

Related Questions