美文网首页
flutter_inappwebview 忽略证书

flutter_inappwebview 忽略证书

作者: YannChee | 来源:发表于2024-04-17 14:59 被阅读0次

    以下代码只适用于测试环境,生产环境不推荐

    在访问https证书的网站,如果用浏览器访问,效果如下

    如果使用flutter_inappwebview 访问则网页白屏,
    解决办法
    在flutter_inappwebview的回调方法中 onReceivedServerTrustAuthRequest ,返回如下结果

     onReceivedServerTrustAuthRequest:
                (webViewController, authenticationChallenge) async {
              return ServerTrustAuthResponse(
                  action: ServerTrustAuthResponseAction.PROCEED);
            }
    

    相关文章

      网友评论

          本文标题:flutter_inappwebview 忽略证书

          本文链接:https://www.haomeiwen.com/subject/weasxjtx.html