How can I save cookies with Jsoup? Or I first must provide them to connection object and then save?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You can obtain cookies as follows:

Response response = Jsoup.connect("http://example.com/login")
    .data("username", username)
    .data("password", password)
    .method(Method.POST).execute();
Map<String, String> cookies = response.cookies();
Document document = response.parse(); // If necessary.
// ...

You can pass cookies back on subsequent requests as follows:

Connection connection = Jsoup.connect("http://example.com/user");

for (Entry<String, String> cookie : cookies.entrySet()) {
    connection.cookie(cookie.getKey(), cookie.getValue());
}

Document document = connection.get();
// ...

Or if you know the individual cookie name:

Document document = Jsoup.connect("http://example.com/user")
    .cookie("SESSIONID", cookies.get("SESSIONID")).get();
// ...

I admit that it would have been nice if Jsoup offered a Connection#cookies(Map<String, String>) so that you don't need to loop over the map and can continue chaining like follows:

Document document = Jsoup.connect("http://example.com/user").cookies(cookies).get();
// ...
link|improve this answer
1  
Good point on the .cookies(map) suggestion. There's one there for .data(). I'll look to add it soon. – Jonathan Hedley Aug 27 '11 at 1:37
1  
OK I've that method; available now if you build from head, or in 1.6.2 soon. github.com/jhy/jsoup/commit/… – Jonathan Hedley Aug 28 '11 at 6:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.