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
I have an API spec with a required query string parameter, defined like this:
{ "name": "my_required_param", "in": "query", "description": "My query string parameter", "required": true, "style": "form", "schema": { "type": "string" } }
Restish generates a --my-required-param CLI flag for this param. If I pass it, as follows:
--my-required-param
restish -v my-api my-operation --my-required-param=xyz
... restish generates a request to /path-to-my-operation?my_required_param=my_required_param%3Dxyz, which seems like a strange choice.
/path-to-my-operation?my_required_param=my_required_param%3Dxyz
Am I doing something wrong in how I'm specifying this argument?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have an API spec with a required query string parameter, defined like this:
Restish generates a
--my-required-param
CLI flag for this param. If I pass it, as follows:... restish generates a request to
/path-to-my-operation?my_required_param=my_required_param%3Dxyz
, which seems like a strange choice.Am I doing something wrong in how I'm specifying this argument?
The text was updated successfully, but these errors were encountered: