我正在跟踪错误: 错误域= NSURLErrorDomain代码= -1202“此服务器的证书无效。您可能正在连接到假装为”api.linkedin.com“的服务器,这可能会使您的机密信息面临风险。” UserInfo = 0x1c53e630
这在模拟器上工作正常,但在设备上却出现上述错误。
请帮助纠正它。
答案 0 :(得分:12)
我通过失去一整天得到它,这是我的设备设置需要更改日期和时间,并为当前时区自动设置为ON。
答案 1 :(得分:-2)
试试这段代码:
- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace {
return [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust];
}
- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge {
if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust])
if ([trustedHosts containsObject:challenge.protectionSpace.host])
[challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge];
[challenge.sender continueWithoutCredentialForAuthenticationChallenge:challenge];
}
希望它有用