我遇到了这个问题,并在this的帮助下解决了这个问题,但是由于 flutter_webview_pugin 与 webview_flutter 。因此,本教程将展示如何在MacOS上为 webview_flutter 实现此方法(仅Windows文件可能有所不同)
1-将此文件夹 / Volumes /.../ Flutter / SDK / flutter / .pub-cache / hosted / pub.dartlang.org / webview_flutter-0.3.10 + 4 复制到一个例如,从项目的根目录开始。
如果这是您的项目: / Volumes / Depo / MyProject / 然后将插件文件夹放在这里很方便: / Volumes / Depo / edited /
2- 然后打开此文件 /Volumes/Depo/edited/webview_flutter-0.3.10+4/android/src/main/java/io/flutter/plugins/webviewflutter/FlutterWebViewClient.java
并添加此行
@Override
public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
handler.proceed();
}
到internalCreateWebViewClient函数。 完成后,它应该看起来像这样
private WebViewClient internalCreateWebViewClient() {
return new WebViewClient() {
@TargetApi(Build.VERSION_CODES.N)
@Override
public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest request) {
return FlutterWebViewClient.this.shouldOverrideUrlLoading(view, request);
}
@Override
public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
handler.proceed();
}
@Override
public void onPageFinished(WebView view, String url) {
FlutterWebViewClient.this.onPageFinished(view, url);
}
};
}
3-添加这些导入
import android.net.http.SslError;
import android.webkit.SslErrorHandler;
由于此方法绕过SSL,因此不建议用于生产环境。
即使服务器的SSL证书有效,也会出现此问题。 因为有效的SSL不能保证客户端通过该域访问的每项服务最终都将使用相同的来源,所以我尝试使用RTSP连接到服务器以通过流安全凸轮进行传输,但是启用了“ 101交换协议”对没有有效SSL的其他端口的第一个请求得到实现。
答案 0 :(得分:1)
您可以使用我的插件flutter_inappwebview。它有很多事件,包括管理SSL错误和SSL客户端证书请求的事件:
onReceivedServerTrustAuthRequest
:当WebView需要执行服务器信任身份验证(证书验证)时触发事件。这是通过Android上的onReceivedSslError
事件实现的。onReceivedClientCertRequest
:通知主机应用程序以处理SSL客户端证书请求。因此,在您的情况下,您只需要使用onReceivedServerTrustAuthRequest
事件并仅返回ServerTrustAuthResponse(action: ServerTrustAuthResponseAction.PROCEED);
:
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
Future main() async {
runApp(new MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
void dispose() {
super.dispose();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: InAppWebViewPage()
);
}
}
class InAppWebViewPage extends StatefulWidget {
@override
_InAppWebViewPageState createState() => new _InAppWebViewPageState();
}
class _InAppWebViewPageState extends State<InAppWebViewPage> {
InAppWebViewController webView;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("InAppWebView")
),
body: Container(
child: Column(children: <Widget>[
Expanded(
child: Container(
child: InAppWebView(
initialUrl: "https://myUrl",
initialHeaders: {},
initialOptions: InAppWebViewWidgetOptions(
inAppWebViewOptions: InAppWebViewOptions(
debuggingEnabled: true,
),
),
onWebViewCreated: (InAppWebViewController controller) {
webView = controller;
},
onLoadStart: (InAppWebViewController controller, String url) {
},
onLoadStop: (InAppWebViewController controller, String url) {
},
onReceivedServerTrustAuthRequest: (InAppWebViewController controller, ServerTrustChallenge challenge) async {
return ServerTrustAuthResponse(action: ServerTrustAuthResponseAction.PROCEED);
},
),
),
),
]))
);
}
}
其中"https://myUrl"
是您的网址。