This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-05-05
Channels
- # admin-announcements (4)
- # beginners (47)
- # boot (69)
- # cider (11)
- # cljsjs (1)
- # cljsrn (5)
- # clojure (163)
- # clojure-austin (17)
- # clojure-russia (27)
- # clojure-uk (46)
- # clojurescript (109)
- # core-async (28)
- # cursive (2)
- # data-science (1)
- # datavis (1)
- # datomic (9)
- # dirac (33)
- # funcool (8)
- # hoplon (1)
- # lein-figwheel (1)
- # leiningen (1)
- # luminus (23)
- # mount (3)
- # nyc (2)
- # off-topic (25)
- # om (3)
- # onyx (4)
- # perun (7)
- # re-frame (10)
- # reagent (2)
- # ring-swagger (4)
- # spacemacs (4)
- # uncomplicate (1)
- # untangled (21)
- # vim (2)
- # yada (2)
@niwiz (while i realize you may be the wrong person to ask it looks like you are pretty active with funcool. I am working with httpurr and i am not sure how to do basic auth in the most recent version… it looks like the auth namespace is gone
@ericfode: basic auth just consists in an Authorization
header with base64 encoded password and username
(defn auth-header
[user password]
(str "Basic " (base64/encodeString (str user ":" password))))
nods Thank you. I found it in a older version in the repo. There is still a sections in the docs referring to http.auth here is a pr to remove it https://github.com/funcool/httpurr/pull/7