7 Mart 2018 Çarşamba

HostnameVerifier Sınıfı

Giriş
Açıklaması şöyle
If the server uses trusted certificate (issued from trusted CA like VeriSign), but for different host, we will get another exception during the host verification step of the SSL handshaking
verify metodu
Şöyle yaparız.
HostnameVerifier allHostsValid = new HostnameVerifier() {
    public boolean verify(String hostname, SSLSession session) {
        return true;
    }
};

HttpsURLConnection.setDefaultHostnameVerifier(allHostsValid);

Hiç yorum yok:

Yorum Gönder