码迷,mamicode.com
首页 > Web开发 > 详细

WKWebView 支持https请求

时间:2017-09-04 12:04:12      阅读:590      评论:0      收藏:0      [点我收藏+]

标签:fail   auth   nsurl   ati   ==   void   osi   methods   let   

 

- (void)webView:(WKWebView *)webView didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler {

    if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) {

        

        if ([challenge previousFailureCount] == 0) {

            

            NSURLCredential *credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];

            

            completionHandler(NSURLSessionAuthChallengeUseCredential, credential);

            

        } else {

            

            completionHandler(NSURLSessionAuthChallengeCancelAuthenticationChallenge, nil);

            

        }

        

    } else {

        

        completionHandler(NSURLSessionAuthChallengeCancelAuthenticationChallenge, nil);   

        

    }

}

WKWebView 支持https请求

标签:fail   auth   nsurl   ati   ==   void   osi   methods   let   

原文地址:http://www.cnblogs.com/nyqmayi/p/7472575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!