Https Connection 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!