luminus icon indicating copy to clipboard operation
luminus copied to clipboard

:query-string doesn't contain qualified keywords

Open zendevil opened this issue 4 years ago • 1 comments

I am making a request with the following :params: {:user/foo 1 ;user/bar 2}. However, when the request is received by the Luminus app, the query string doesn’t contain the keyword qualifiers and is: foo=1&bar=2 instead of user/foo=1&user/bar=2. Why aren’t the keyword qualifiers showing? I’d like them to show.

zendevil avatar Mar 22 '21 21:03 zendevil

Might be an artifact of encoding a GET request since it has to turn into a URL string. Could you try using POST instead to see if namespaced keywords roundtrip in the body?

yogthos avatar Mar 23 '21 00:03 yogthos