NSURL *url = [NSURL URLWithString:@"https://myUrlString.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
NSURLResponse *responseurl;
NSError *err;
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&responseurl error:&err];
NSLog(@"data length:%u", data.length);
NSLog(@"response:%@ , error:%@", responseurl, err);
そして、私が得た応答は:-
data length:0
response:(null) ,
error:Error Domain=NSURLErrorDomain Code=-1202 「このサーバーの証明書は無効です。「myUrlString.com」になりすましたサーバーに接続している可能性があり、機密情報が危険にさらされる可能性があります。」UserInfo=0x8742d70 {NSErrorFailingURLStringKey=https:https://myUrlString.com,
NSLocalizedRecoverySuggestion=サーバーに接続しますか?,
NSErrorFailingURLKey=https://myUrlString.com,
NSLocalizedDescription=このサーバーの証明書は無効です。「myUrlString.com」になりすましたサーバーに接続している可能性があり、機密情報が危険にさらされる可能性があります。, NSUnderlyingError=0x8745bf0 " The certificate for this server is invalid. You might be connecting to a server that is pretending to be “myUrlString.com” which could put your confidential information at risk.
", NSURLErrorFailingURLPeerTrustErrorKey=}