博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WKWebView 支持https请求
阅读量:5307 次
发布时间:2019-06-14

本文共 805 字,大约阅读时间需要 2 分钟。

 

- (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);   

        

    }

}

转载于:https://www.cnblogs.com/nyqmayi/p/7472575.html

你可能感兴趣的文章
个人经验 - Android的RelativeLayout布局的layout_height属性设置为wrap_content时的坑
查看>>
最长子序列
查看>>
SQL分组查询每组前几条数据
查看>>
01章 面向对象开发方法概述
查看>>
命令行调用Lame批量压缩MP3
查看>>
iis7配置网站容易出现的问题(转)
查看>>
如何成为一名优秀的程序员?
查看>>
HDU(4528),BFS,2013腾讯编程马拉松初赛第五场(3月25日)
查看>>
C++期中考试
查看>>
Working with Characters and Strings(Chapter 2 of Windows Via C/C++)
查看>>
vim中文帮助教程
查看>>
Android 创建与解析XML(四)—— Pull方式
查看>>
CodeForces 411B 手速题
查看>>
同比和环比
查看>>
美国在抛弃慕课,中国却趋之若鹜
查看>>
SpringMvc拦截器运行原理。
查看>>
MySQL基础3
查看>>
逻辑斯蒂回归(Logistic Regression)
查看>>
360前端面试题 2015年 07
查看>>
移动端页面使用rem布局
查看>>