How can I set the cookies I got from a response to...
# http4k
r
How can I set the cookies I got from a response to a request?
d
are. you simulating a browser? If so,
Copy code
private val browser = FollowRedirects()
        .then(Cookies())
        .then(http)
r
Neato, thanks!