Skip to content

iOS WebView 忽略 SSL 证书错误

Published: at 09:39 AMSuggest Changes

IOS Webview 忽略 SSL 证书 错误

报错 An SSL error has occurred and a secure connection to the server cannot be made.

Info.plist 设置一下

https://stackoverflow.com/questions/32755674/ios9-getting-error-an-ssl-error-has-occurred-and-a-secure-connection-to-the-ser

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>
import SwiftUI
import WebKit

// Define a UIViewRepresentable type that handles WKWebView
struct WebView: UIViewRepresentable {
    var url: URL

    func makeUIView(context: Context) -> WKWebView {
        let webView = WKWebView()
        webView.navigationDelegate = context.coordinator
        return webView
    }

    func updateUIView(_ webView: WKWebView, context: Context) {
        let request = URLRequest(url: self.url)
        webView.load(request)
    }

    func makeCoordinator() -> Coordinator {
        Coordinator(self)
    }

    class Coordinator: NSObject, WKNavigationDelegate {
        var parent: WebView

        init(_ parent: WebView) {
            self.parent = parent
        }

        func webView(_ webView: WKWebView, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
            // Ignoring SSL errors
            completionHandler(.useCredential, URLCredential(trust: challenge.protectionSpace.serverTrust!))
        }
    }
}

// Using the WebView in your SwiftUI view
struct ContentView: View {
    var body: some View {
        WebView(url: URL(string: "https://google.com")!)
            .edgesIgnoringSafeArea(.all)
    }
}

// Preview provider
struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}

Previous Post
Xcode 13 中 Info.plist 文件的位置
Next Post
滚动到指定位置并进行偏移