以下代碼只適用于測試環(huán)境,生產(chǎn)環(huán)境不推薦
在訪問https證書的網(wǎng)站,如果用瀏覽器訪問,效果如下
如果使用flutter_inappwebview 訪問則網(wǎng)頁白屏,
解決辦法
在flutter_inappwebview的回調(diào)方法中 onReceivedServerTrustAuthRequest ,返回如下結(jié)果
onReceivedServerTrustAuthRequest:
(webViewController, authenticationChallenge) async {
return ServerTrustAuthResponse(
action: ServerTrustAuthResponseAction.PROCEED);
}