Skip to content

Instantly share code, notes, and snippets.

@kinlane
Created April 14, 2012 19:00
Show Gist options
  • Save kinlane/2386968 to your computer and use it in GitHub Desktop.
Save kinlane/2386968 to your computer and use it in GitHub Desktop.
IDrive - EVS - REST API - downloadEvent
String params="uid="+user+"&pwd="+pass+"&month="+month+"&year="+year+"&eventid="+eventid;
URL evsURL = new URL("https://<server address>/evs/downloadEvent");
HttpURLConnection con = (HttpURLConnection) evsURL.openConnection();
con.setRequestMethod("POST");
con.setRequestProperty("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
con.setDoOutput(true);
con.setDoInput(true);
con.setUseCaches(false);
DataOutputStream dout = new DataOutputStream(con.getOutputStream());
dout.writeBytes(params);
dout.flush();
dout.close();
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
while ((str = in.readLine()) != null)
{
result += str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment