Re: Using cookies with clj-http.client

2015-11-09 Thread Jeff Mad
I don't see any problem with your code. Try to add :debug true to both of those maps and look at the output. Ensure that for both URLs share exact same hostname and protocol http/https. Look at the Set-Cookie header in the POST response and ensure that the path matches the url in the GET.

Using cookies with clj-http.client

2015-11-08 Thread Mike
Hello, I have a web site that uses cookies for authentication. You logon to a specific URL with your username and password using a POST (which I have working; I get a 200 status back) which should create a cookie; then you use the cookie for all future access to the web site. I have all of