Convert JSON to map [closed]

0

I'm getting a json in the key :body of the response using a request clj-http . How to make this json into map?

    
asked by anonymous 03.10.2016 / 21:26

1 answer

0

Oops, I've decided here, I used the function: key-fn, as below:

(json/read-str (return :body)
           :key-fn keyword) 
    
04.10.2016 / 05:28