RESTless HTTP / REST Client VSCode ExtensionRESTless is a Visual Studio Code extension which integrates an HTTP client into VSCode. It features a GUI for editing the requests as well as running them. It also supports externally sourced variables for high flexibility and keeping secrets out of your codebase. Features
VariablesEvery text input accepts variables in a special format. This way you can populate request options with information read from files or the environment, thus enabling you to keep secrets out of your codebase. Variables are substituted when running the call an currently, the following are supported:
These variables can also be nested - for example, one may have a file path as a variable in a
Variable parameters are delimited by double quotes and therefore currently cannot contain double quotes in the values (in some circumstances). AuthenticationAuthentication supports additional special "variables" which construct appropriate headers on runtime:
Again, these can contain regular variables as outlined above. |