1
HTTPSリンクにGoogleのアプリエンジンでhttpsレスポンスを取得するにはどうすればよいですか?
javax.net.ssl.SSLHandshakeException応答を取得しようとしたとき、私はこの例外を取得します。https::用のSSL証明書を検証できませんでした// [...リンク...]
を以下は私が使用するコードです。私は間違って何をしていますか?
URL productsURL = new URL(link + authenticationExtension);
URLConnection connection = productsURL.openConnection();
connection.setRequestProperty("Authorization", "Basic " + userNamePasswordB64);
connection.connect();
BufferedReader br = new BufferedReader(new InputStreamReader(connection.getInputStream()));