gpt4 book ai didi

cordova - 在应用程序浏览器中摆脱 Cordova 中的 SSL 验证

转载 作者:太空宇宙 更新时间:2023-11-03 12:50:47 25 4
gpt4 key购买 nike

我正在构建一个网络和混合移动应用程序。这些应用程序在暂存环境中使用 ssl 自签名证书与第三方服务通信。桌面浏览器允许接受带有风险警告的无效证书,但在 iOS 应用程序中我收到此错误

Failed to load resource: The certificate for this server is invalid. You might be connecting to a server that is pretending to be "xxx" which could put your confidential information at risk.

我了解风险,但由于我的第三方提供商无法为暂存服务器中的服务提供有效的 ssl 证书,所以我别无选择。

是否有任何配置/可能性允许在 iOS 和 android inappbrowser 插件中使用无效的 ssl 证书。

非常感谢您的帮助。

最佳答案

感谢@Levi Murray。

对于 Capacitor 2.2.0,您需要调整@Levi Murray 的回答。

Android - node_modules/@capacitor/android/capacitor/src/main/java/com/getcapacitor/BridgeWebViewClient.java

将覆盖方法与其他方法一起添加。

    ....
@Override
public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
handler.proceed();
return;
}

关于cordova - 在应用程序浏览器中摆脱 Cordova 中的 SSL 验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38863228/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com