I would like to make an http call using an http client with these characteristics:
- don't follow redirects (just get the full response of the first call, which returns a 302 redirect code)
- being able to receive cookies
Hence, I am looking for a solution with http.Client
rather than with trasport.RoundTrip
how can I do that?