Fork me on GitHub
#ring-swagger
<
2017-01-04
>
metametadata23:01:03

Hi. I'm using the latest alpha version of compojure-api. When I POST a application/transit+json payload to my API it automatically converts the string map keys into keyword map keys. How do I turn this behavior off? E.g.: I post {"a" "b" "c" "d"} and inside the handler I get {:a "b" :c "d"} instead of expected {"a" "b" "c" "d"}.

metametadata23:01:25

the handler looks kinda like this:

(POST "/save" []
        :body-params [item :- s/Any]
,,,)