HTTPS から Json 応答を取得し、例外を取得しています
javax.net.ssl.SSLException: Not trusted server certificate
以下は私のコードで、HttpGetまたはHttpPostで試しても、行で例外が発生します
HttpResponse httpResponse = httpClient.execute(request);
これらは、URL からデータを取得するための以下のコードです。
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost request = new HttpPost(urlString);
HttpResponse httpResponse = httpClient.execute(request);
この問題について答えを得ることを望んでいます。ありがとう。