URL myUrl = new URL(httpsURL);
HttpsURLConnection conn = (HttpsURLConnection) myUrl.openConnection();
conn.setRequestMethod("GET");
InputStream is = conn.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String inputLine;
while ((inputLine = br.readLine()) != null) {
System.out.println(inputLine);
}
br.close();
For further assistance I would recommend posting a question to StackOverflow (which we also monitor), as this falls outside the scope of Google Groups which is not meant for specific 1-on-1 technical issues but for general discussion of the platform and its services. Check out our community support page for the list of tags we monitor.