I am getting this error
The certificate for this server is invalid. You might be connecting to a server
that is pretending to be "server addres goes here" which could put your
confidential information at risk."
I am using this method:
[NSURLConnection sendSynchronousRequest:request
returningResponse:&response
error:&error];
How can I fix this?
I tried this code:
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request
delegate:self];
but then I get EXC_BAD_ACCESS in the didReceiveResponse method.
The correct (non deprecated, non private) way using the new:
- (void)connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
method that apple has specified should be used for NSURLConnectionDelegates is to respond to the ServerTrust method with the credential that was provided for the protection space (this will allow you to connect:
- (void)connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
if([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust])
{
NSLog(@"Ignoring SSL");
SecTrustRef trust = challenge.protectionSpace.serverTrust;
NSURLCredential *cred;
cred = [NSURLCredential credentialForTrust:trust];
[challenge.sender useCredential:cred forAuthenticationChallenge:challenge];
return;
}
// Provide your regular login credential if needed...
}
This method gets called multiple times once for each available authentication method, if you don't want to login using that method use:
[challenge.sender rejectProtectionSpaceAndContinueWithChallenge:challenge];
You could simply ignore the invalid certificate if you are not sending any sensitive information. This article describes how you could do that. Here is an example implementation by Alexandre Colucci for one of the methods described in that article.
Essentially you want to define a dummy interface just above the @implementation
:
@interface NSURLRequest (DummyInterface)
+ (BOOL)allowsAnyHTTPSCertificateForHost:(NSString*)host;
+ (void)setAllowsAnyHTTPSCertificate:(BOOL)allow forHost:(NSString*)host;
@end
And before you call sendSynchronousRequest
, invoke the private method you defined in the dummy interface:
[NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:[URL host]];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With