Should I generally expect this to work for most APIs?
(defn get-conversations
[user-id]
(->> (client/get conversations-url (assoc (get-conversations-request user-id)
:headers headers
:coerce :always
:as :clojure
"Content-type" "application/clojure"))
(:body)))
My project.edn has both cheshire and tools.reader. I confirmed that JSON worksfor EDN I do:
{:accept :edn
:as :auto
:body ... ; edn string
:content-type "application/edn"}