How to specify a user id and password for Visual Studio Code with an authenticating proxy?
I\'ve seen the Proxy Server Support on the main VS Code site, but this onl
in Visual Studio Code (my version is 1.32.3) you write a request, i.e.
### my request
GET https://defdomain.prefix.com/app/resource
Authorization: bXl1c2VyOnVzZXIyMkBwYXNzd29yZA==
Wherefore the Authorization header is of type "Basic base64encoded" and consists of myuser:user22@password (username:usercredentials) base64 encoded. Thats all.