gpt4 book ai didi

ios - 如何使用 WKWebView 正确实现身份验证质询?

转载 作者:可可西里 更新时间:2023-11-01 03:21:44 29 4
gpt4 key购买 nike

我正在构建一个网络浏览器,但在网络方面我真的是新手。

我想测试下面的代码示例,但我没有可使用的真实示例:

- (void)webView:(WKWebView *)webView didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition, NSURLCredential * _Nullable))completionHandler
{
CFDataRef exceptions = SecTrustCopyExceptions(challenge.protectionSpace.serverTrust);

SecTrustSetExceptions(challenge.protectionSpace.serverTrust, exceptions);

CFRelease(exceptions);

completionHandler(NSURLSessionAuthChallengeUseCredential, [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]);
}

谁能提供我可以测试上述代码的网址?

编辑:我开始赏金是因为我感到筋疲力尽。我正在完成我创建的应用程序,每天都会出现很多问题。非常感谢您的帮助!

最佳答案

@Vulkan 请通过此链接检查您的代码。

http://samvermette.com

我使用了来自 https://github.com/TransitApp/SVWebViewController 的链接

关于ios - 如何使用 WKWebView 正确实现身份验证质询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42671360/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com