technomancy / clojure-http-client

An HTTP client for Clojure (DEPRECATED)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

doesn't work properly with basic http auth username with specsymbols

mholub opened this issue · comments

username like "login@email.com" are not properly encoded as I understand

I just added support for url-encoded userinfo:

http://github.com/juergenhoetzel/clojure-http-client

so you can use auth info containing non-uri-characters:

  (str "http://" (url-encode "user@host:secret") "@test.com/protected/")

good work, thanks!