The currently implementation does not allow HTTPS URL's:
private HttpURLConnection getRequestConnection(URL url) throws IOException {
if (!url.getProtocol().startsWith("http")) {
throw new UnsupportedOperationException(
"Unsupported scheme:" + url.getProtocol());
}
return (HttpURLConnection) url.openConnection();
}
Are you planning to use HttpURLConnection for the foreseeable future?
Personally, I'd prefer if opensocial-java-client used Apache HttpClient 4
Original issue reported on code.google.com by sean%sea...@gtempaccount.com on 18 Nov 2008 at 2:52
Original issue reported on code.google.com by
sean%sea...@gtempaccount.com
on 18 Nov 2008 at 2:52