0
にHTTPSで作業しながら、私は、HTTPSプロトコルSSLPeerUnverifiedExceptionを結果SSLPeerUnverifiedExceptionアンドロイドでアンドロイド
HttpResponse response = null;
try {
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet();
request.setURI(new URI(UrlConnectionConstants.SCI_TA_AGENT_URL));
response = client.execute(request);
} catch (URISyntaxException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return response;
でRESTfulなAPIで働いています。ここで
ための自己署名証明書のコードのサンプル片である、私はあなたが' http'接続と 'HttpsURLConnection'のための' HttpURLConnection'を使用することをお勧め'https'接続の場合 詳細情報http://stackoverflow.com/questions/22095813/androidhttpclient-versus-httpurlconnection-for-api-level-9-and-above#answer-22096707 – Deb
「SSLPeerUnspicifiedException」はありません。あなたは 'SSLPeerUnverifiedException'を意味しますか? – Robert
返信ありがとうございますが、HttpsURLConnectionクラスでも同じ問題が発生しています –