(ring.util.codec/url-encode " returns daniel+10% while it should be daniel%2B10% . + should be encoded to %2B as browsers interpreter + as space.
The weird thing is when Iām doing (ring.util.codec/url-decode "daniel%2B10% it knows to translate %2B to + .
Is there a workaround? anybody run into this?
I think you want form-encode.
https://github.com/ring-clojure/ring-codec/issues/12
thanks š