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
Hello! I need to send a query param, whose value is an array I need to send it in the format ?param=val1¶m=val2. Is there a way to do this?
The text was updated successfully, but these errors were encountered:
I think the closest would be using the Bracket query mapping strategy of the lib:
Bracket
ResourceGlobalConfig.queryMappingMethod = ResourceQueryMappingMethod.Bracket;
But then you'll need to pass the parameters adding [n] (url encoded) after the param name: ?param%5B0%5D=val1¶m%5B1%5D=val2.
[n]
?param%5B0%5D=val1¶m%5B1%5D=val2.
Sorry, something went wrong.
No branches or pull requests
Hello! I need to send a query param, whose value is an array
I need to send it in the format ?param=val1¶m=val2. Is there a way to do this?
The text was updated successfully, but these errors were encountered: