ios UIWebView에서 https를 로드하면 load page error:Error Domain=NSURLErrorDomain Code=-1202"이 서버의 인증서가 잘못되었습니다.

2094 단어 ios
오늘 UIWebView로 https를 불러올 때 이 서버의 인증서가 잘못되었습니다. 그리고 인터넷에서 해결 방법을 찾았는데 완벽하지 않습니다. 자신의 이해에 따라 다음과 같이 수정합니다.
1. 웹뷰에 나타난 XX.h 파일에 NSURLConnectionDelegate 에이전트를 추가하고 다음 변수를 설명합니다.
  NSURLConnection *_urlConnection;
  NSURLRequest *_request;
  BOOL _authenticated;
2. xx에서m 파일에 다음 방법 추가하기
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType;
{
    if (!_authenticated) {
        _authenticated =NO;
        _urlConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self]; //  request _request
        _request = request; // 
        [_urlConnection start];
        return NO;
    }
    return YES;
}

#pragma mark - NURLConnection delegate

- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
    if ([challenge previousFailureCount] == 0)
    {
        _authenticated = YES;
        NSURLCredential *credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];
        [challenge.sender useCredential:credential forAuthenticationChallenge:challenge];
    } else
    {
        [[challenge sender] cancelAuthenticationChallenge:challenge];
    }
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    // remake a webview call now that authentication has passed ok.
    _authenticated = YES;
    [self.webView loadRequest:_request]; //  self.webView webview
    // Cancel the URL connection otherwise we double up (webview + url connection, same url = no good!)
    [_urlConnection cancel];
}

// We use this method is to accept an untrusted site which unfortunately we need to do, as our PVM servers are self signed.
- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
{
    return [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust];
}

모두에게 유용하길 바라며, 의견이 있으면 문장 아래에서 제기할 수 있다

좋은 웹페이지 즐겨찾기