我试图绕过/忽略自签名证书需要帮助。到目前为止,我到处寻找并找不到任何对我有用的东西..
我正在尝试实现此here,但我不确定如何使用此代码
@implementation NSURLRequest(AllowAllCerts)
+ (BOOL) allowsAnyHTTPSCertificateForHost:(NSString *) host {
return YES;
}
@end
我将它添加到我的app委托,但后来我不知道该怎么办?
任何帮助将不胜感激..
目前我没有使用任何东西,因为没有什么对我有用..
答案 0 :(得分:1)
这就是我开始工作的方式。 我在方法的下方添加了这两种方法,我将其称为连接启动。
- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace {
return [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust];
}
- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge {
[challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge];
[challenge.sender continueWithoutCredentialForAuthenticationChallenge:challenge];
}