首页 > Java > java教程 > 如何解决 Android HTTPS POST 请求中的'ssl 异常:不受信任的服务器证书”错误?

如何解决 Android HTTPS POST 请求中的'ssl 异常:不受信任的服务器证书”错误?

Patricia Arquette
发布: 2024-12-14 01:50:09
原创
597 人浏览过

How to Resolve

Https 连接 Android

在 Android 中尝试 HTTPS POST 请求时,遇到“ssl 异常:不受信任的服务器证书”错误。尽管在 HTTP 下正常工作,HTTPS 调用失败。

解决方案:

要绕过服务器证书验证并建立 HTTPS 连接,可以实现自定义信任管理器和主机名验证器如下所示:

public static void trustAllHosts() {
    // Create a trust manager that does not validate certificate chains
    TrustManager[] trustAllCerts = new TrustManager[]{new X509TrustManager() {
        public java.security.cert.X509Certificate[] getAcceptedIssuers() {
            return new java.security.cert.X509Certificate[]{};
        }

        public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
        }

        public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
        }
    }};

    // Install the all-trusting trust manager
    try {
        SSLContext sc = SSLContext.getInstance("TLS");
        sc.init(null, trustAllCerts, new java.security.SecureRandom());
        HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
    } catch (Exception e) {
        e.printStackTrace();
    }
}

// always verify the host - dont check for certificate
final static HostnameVerifier DO_NOT_VERIFY = new HostnameVerifier() {
    public boolean verify(String hostname, SSLSession session) {
        return true;
    }
};
登录后复制

要使用这些设置,请将您的 HTTPS 连接设置代码修改为如下:

HttpURLConnection http = null;

if (url.getProtocol().toLowerCase().equals("https")) {
    trustAllHosts();
    HttpsURLConnection https = (HttpsURLConnection) url.openConnection();
    https.setHostnameVerifier(DO_NOT_VERIFY);
    http = https;
} else {
    http = (HttpURLConnection) url.openConnection();
}
登录后复制

以上是如何解决 Android HTTPS POST 请求中的'ssl 异常:不受信任的服务器证书”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板