web-dev-qa-db-ja.com

javax.net.ssl.SSLPeerUnverifiedException:Hostname .comが検証されていない解決方法:

次のエラーが発生しますHostname domain.com not verified:ではない"javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated"別のホストに接続する前に、このホストで問題に直面していました。修正方法

 javax.net.ssl.SSLPeerUnverifiedException: Hostname domain.com not verified:
    certificate: sha1//WQM9QbrKs6DCFa9qN/EIw1ywBw=
    DN: CN=*.ipage.com,OU=Domain Control Validated - RapidSSL(R),OU=See www.rapidssl.com/resources/cps (c)14,OU=GT29505539
    subjectAltNames: [*.ipage.com, ipage.com]
            at com.squareup.okhttp.Connection.connectTls(Connection.Java:244)
            at com.squareup.okhttp.Connection.connectSocket(Connection.Java:199)
            at com.squareup.okhttp.Connection.connect(Connection.Java:172)
            at com.squareup.okhttp.Connection.connectAndSetOwner(Connection.Java:367)
            at com.squareup.okhttp.OkHttpClient$1.connectAndSetOwner(OkHttpClient.Java:128)
            at com.squareup.okhttp.internal.http.HttpEngine.connect(HttpEngine.Java:328)
            at com.squareup.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.Java:245)
            at com.squareup.okhttp.Call.getResponse(Call.Java:267)

これは私のコードです

  try {
                    JSONObject jsonObject = new JSONObject();
                    jsonObject.accumulate("name", name);
                    jsonObject.accumulate("password", pass);
                    jsonObject.accumulate("email", emails);
                    json = jsonObject.toString();
                    Log.e("MYAPP", "getjson");

                } catch (JSONException e) {
                    Log.e("MYAPP", "unexpected JSON exception", e);
                }
                try{
                    RequestBody formBody = new FormEncodingBuilder()
                            .add("name", name)
                            .build();
                    Request request = new Request.Builder()
                            .url("https://justedhak.com/Files/users.php")
                            .post(formBody)
                            .build();
12
Moudiz

[〜#〜]更新[〜#〜]

例外はjavax.net.ssl.SSLPeerUnverifiedException: Hostname justedhak.com not verifiedDN: CN=*.ipage.com...およびsubjectAltNames: [*.ipage.com, ipage.com]

その結果、以下のサンプルコードでsetHostnameVerifierを置き換えることができます(return trueは推奨されません)。

client.setHostnameVerifier(new HostnameVerifier() {
            @Override
            public boolean verify(String hostname, SSLSession session) {
                //return true;
                HostnameVerifier hv =
                        HttpsURLConnection.getDefaultHostnameVerifier();
                return hv.verify("ipage.com", session);
            }
        });

以下のスクリーンショットのように、成功の結果も得られます。


learningの目的またはdeveloping環境でのみそのホストのHTTPSを使用したい場合は、次のようにして、もちろん、GETリクエストによってPOSTリクエストを変更できます。

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mTextView = (TextView) findViewById(R.id.textView);
        mHandler = new Handler(Looper.getMainLooper());
        OkHttpClient client = new OkHttpClient();
        client.setHostnameVerifier(new HostnameVerifier() {
            @Override
            public boolean verify(String hostname, SSLSession session) {
                return true;
            }
        });
        Request request = new Request.Builder()
                .url("https://justedhak.com/Files/users.php")
                .build();
        client.newCall(request).enqueue(new Callback() {
            @Override
            public void onFailure(Request request, IOException e) {
                // do something...
                Log.e(LOG_TAG, e.toString());
            }

            @Override
            public void onResponse(Response response) throws IOException {
                // do something...
                Log.i(LOG_TAG, response.body().string());
            }
        });
    }

これがスクリーンショットです

BNK's screenshot

次の質問で詳細を読むこともできます。

OkHttp信頼証明書

15
BNK