Im using HttpClient
to access a website. The 1st post request gives me status code 302 a url which I Should redirect. For this I would require to get the session Id from cookies.
I used the below code to iterate the cookies.
List<Cookie> cookies = httpclient.getCookieStore().getCookies();
I dont see a session Id here in cookie. How should I proceed further to handle this url and get the response I need.