You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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?
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.
The text was updated successfully, but these errors were encountered: