I have a server which I have to do login first (first URL), then I will send another POST request (second URL), but this post request can only be done if I am still logged on. How can do the POST request using URL 2 still being logged?
Here is the code:
HttpURLConnection con=(HttpURLConnection) new URL("http://Login(URL1)").openConnection();
String headerName=null; String cookie=null;
for (int i=1; (headerName = con.getHeaderFieldKey(i))!=null; i++) {
if (headerName.equals("Set-Cookie"))
cookie = con.getHeaderField(i);
}
cookie = cookie.substring(0, cookie.indexOf(";"));
String cookieName = cookie.substring(0, cookie.indexOf("="));
String cookieValue = cookie.substring(cookie.indexOf("=") + 1, cookie.length());
System.out.println(cookieName);
System.out.println(cookieValue);
con=(HttpURLConnection) new URL("http://Login(URL1)").openConnection();
con.setRequestMethod("POST");
con.setRequestProperty("Cookie", "session_id=" + cookieValue);
con.setDoInput(true);
con.setDoOutput(true);
PrintWriter writer = new PrintWriter(con.getOutputStream());
String account = "sdfsdf";
String password = "sddfdsf";
writer.println("&username=" + account + "&password=" + password + "&action=do_login&http=1");
writer.close();
System.err.println(con.getResponseCode());
BufferedReader reader=new BufferedReader(new InputStreamReader(con.getInputStream()));
String response;
while ((response=reader.readLine())!=null) {
System.out.println(response);
}
reader.close();
con=(HttpURLConnection) new URL("http://POST Request URL").openConnection();
con.setRequestMethod("POST")