You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there a way we can allow users to read variables from env variable file (for example)? A scenario: I have secret token from env file and I would like that to be read instead of writing it on the top the rest client .http file.
This is not an issue but maybe a feature we can implement.
The text was updated successfully, but these errors were encountered:
Not sure I understand the question.
It is possible to get the token from the env file, for example you can have token defined in the env file, and then in the .http one you make a request like this:
GET {{exampleEndpoint}}/api
Authorization: {{token}}
which would use the token defined in the env file.
First of all awesome job!
If there a way we can allow users to read variables from env variable file (for example)? A scenario: I have secret token from env file and I would like that to be read instead of writing it on the top the rest client .http file.
This is not an issue but maybe a feature we can implement.
The text was updated successfully, but these errors were encountered: