uzhas-sovka

Results 3 issues of uzhas-sovka

How can I prevent redirects? `httpConfigRedirectCount = 1` -- single redirect, OK. `httpConfigRedirectCount = 0` -- zero redirects and Exception. Can I ban redirects and avoid exception?.. My goal is...

question
feature-request

How can I add custom names to cookies? `L.cookie_name` and all other constructors from https://hackage.haskell.org/package/http-client-0.5.1/docs/Network-HTTP-Client.html `data Cookie` are OK, but my original cookie has ``` "storeId": "firefox-default" "firstPartyDomain": "" ```...

question
feature-request

Let's, for example, set cookie for site.com: ``` Cookie {cookie_name = "some_name", cookie_value = "some_value", cookie_domain = "site.com"} ``` This cookie is sent successful when I send request to site.com....