It's better to start Visual studio code application with a command line using argument "--log-net-log" and record all network level traffic.
# code --log-net-log=netlog.json
In order to debug any issues in Visual studio code environment,
Help -> Toggle Developer Tools -> Network
Help -> Toggle Developer Tools -> Console
View -> Command Pallette... -> Toggle Shared Process -> Console
View -> Open View… -> Log (Shared)
View -> Open View… -> Log (Window)
Goto File -> Preferences -> Settings Filter the settings options using "proxy" so that only proxy related settings are visible. Under Http:Proxy Authorization tab, you will see the option of "Edit in settings.json". Click to edit the file. If the file is blank, add the following settings to the file and save.
$ cat settings.json
{
"http.proxySupport": "on",
"http.proxy": "http://user:passwd@192.168.1.6:3128",
"http.proxtStrictSSL": "false",
"http.proxyAuthorization": null
}
Kindly change user,password, proxy server and proxy port as per your requirements.
To encode in base64
$ echo "user:passwd"| base64
dXNlcjpwYXNzd2QK
To decode in base64
$ echo dXNlcjpwYXNzd2QK | base64 --decode
boss here you have typo and mistake:
"http.proxtStrictSSL": "false","http.proxyStrictSSL": false,