We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example I have apiClientX with following path: /get?query[id][is]=xyz and abc
apiClientX
/get?query[id][is]=xyz and abc
xyz and abc is URI values, passed through api client method interface.
xyz and abc
And I set DefaultUriBuilderFactory.EncodingMode=VALUES_ONLY.
DefaultUriBuilderFactory.EncodingMode=VALUES_ONLY
Then send the request...
Expectation /get?query[id][is]=xyz+and+abc (url template is NOT encoded, url values is encoded)
/get?query[id][is]=xyz+and+abc
Actual /get?query[id][is]=xyz and abc (url template is NOT encoded, url values is NOT encoded)
Current workaround Encode the xyz and abc manually with java URI encoder method before passing it to apiClientX.
Will fill up later for sample code.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example I have
apiClientX
with following path:/get?query[id][is]=xyz and abc
xyz and abc
is URI values, passed through api client method interface.And I set
DefaultUriBuilderFactory.EncodingMode=VALUES_ONLY
.Then send the request...
Expectation
/get?query[id][is]=xyz+and+abc
(url template is NOT encoded, url values is encoded)
Actual
/get?query[id][is]=xyz and abc
(url template is NOT encoded, url values is NOT encoded)
Current workaround
Encode the
xyz and abc
manually with java URI encoder method before passing it toapiClientX
.Will fill up later for sample code.
The text was updated successfully, but these errors were encountered: