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
Input type application/x-www-form-urlencoded is not supported.
application/x-www-form-urlencoded
The following is an excerpt from Swagger's example API, which cannot be expressed via autocli-generated library:
autocli
{ "paths": { "/pet/{petId}": { "post": { "consumes": ["application/x-www-form-urlencoded"], "produces": ["application/json", "application/xml"], "parameters": [ { "name": "petId", "in": "path", "description": "ID of pet that needs to be updated", "required": true, "type": "integer", "format": "int64" }, { "name": "name", "in": "formData", "description": "Updated name of the pet", "required": false, "type": "string" }, { "name": "status", "in": "formData", "description": "Updated status of the pet", "required": false, "type": "string" } ], "responses": {"405": {"description": "Invalid input"}}, "security": [{"petstore_auth": ["write:pets", "read:pets"]}] } } }
Preferable way of handling this would be adding a new flag -F.
-F
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Input type
application/x-www-form-urlencoded
is not supported.The following is an excerpt from Swagger's example API, which cannot be expressed via
autocli
-generated library:Preferable way of handling this would be adding a new flag
-F
.The text was updated successfully, but these errors were encountered: