我如何正确使用WKWebView实现身份validation?
我正在build立一个networking浏览器,而我在networking方面真的是新手。
我想testing代码示例波纹pipe,但我没有真正的生活的例子来处理:
- (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]); }
任何人都可以提供一个URL,我可以testing上面的代码?
编辑:我开始了一个赏金,因为我感到筋疲力尽。 我正在完成我创build的应用程序的过程,每天都有很多问题出现。 我真的很感谢帮助!
@Vulkan请检查您的代码与此链接。
我从https://github.com/TransitApp/SVWebViewController使用这个链接