我遇到以下错误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();
答案 0 :(得分:9)
<强>更新强>
因为例外情况为javax.net.ssl.SSLPeerUnverifiedException: Hostname justedhak.com not verified
,DN: 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);
}
});
您也可以获得成功结果,如下面的截图所示。
如果您只想为学习目的或开发环境使用该主机的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());
}
});
}
这是截图
您还可以阅读以下问题:
答案 1 :(得分:0)
在Jenkins尝试访问GIT时,我遇到了相同的错误,真正的错误是GIT地址定期更改(基于AWS),并且Jenkins的地址已不再有效。重新启动jvm足以解决该问题,但减少ttl将是最佳解决方案