restish
restish copied to clipboard
Restish is a CLI for interacting with REST-ish HTTP APIs with some nice features built-in
Dirty example of `apis.json`: ``` "api1": { "base": "https://api.example.com", ... "api2": { "base": "https://api.example.com/foo" } ``` If restish is configured like the above, it will randomly switch between `api1` and...
Restish generates convenient command names such as "messaging-email-address-status-get". However, our OpenAPI spec defines operationId for all the operations. Is it possible to have Restish use those instead?
I can't seem to find a way to include literal commas when using the [CLI Shorthand Syntax](https://rest.sh/#/shorthand?id=cli-shorthand-syntax). For example: ``` ~ restish post "https://httpbin.org/post" sender.id: test, "text: Hello, CLI"...
Currently there are cases where an error correctly sets a status code 0 (e.g. on authentication failures) but other cases (e.g. host not reachable, HTTP 400/500) exit with success, making...
Hi! I would like Restish to be able to validate my application/json schema so it can trigger at least an error when an unknown parameter is provided before making any...
It would be great, if authentication profiles could be shared by multiple APIs. This would prevent configuring the same authentication credentials multiple times for every API that uses the same...
Hello! As the maintainer of [openapi.tools](https://openapi.tools), and as somebody works with Linux Foundation helping out in OpenAPI-land, I'm reaching out to tooling vendors to track the progress towards supporting OpenAPI...
Currently if an object (tag or other) has link in description (usually used for docs generation in e.g. redoc-cli) - this will lead to error in restish. I think it...
It would be nice if the project could follow [freedesktop](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) `XDG_DATA_DIR` instead of `$HOME/.restish` so home would not be cluttered. I don't know GO, but it seems there is a...
I have a few questions related to the openApi spec document 1. can the spec_files array contain urls? 2. There may be a bug related to path resolution in the...