Proxy 无法获取本地颁发者证书vscode

Proxy 无法获取本地颁发者证书vscode,proxy,visual-studio-code,corporate,Proxy,Visual Studio Code,Corporate,我正在尝试安装VSCode的扩展。但无法获得本地发行人认证。 my settings.json // Place your settings in this file to overwrite the default settings { // Controls the font family. "editor.fontFamily": "Consolas", // Controls the font size. "editor.fontSize": 12, //Se

我正在尝试安装VSCode的扩展。但无法获得本地发行人认证。 my settings.json

    // Place your settings in this file to overwrite the default settings { // Controls the font family.
"editor.fontFamily": "Consolas",

    // Controls the font size.
"editor.fontSize": 12,

    //Setting corporate proxy
"http.proxy": "http://proxy_servr:3128",
"https.proxy": "http://proxy_servr:3128",

    //Disable SSL Verification
"http.proxyStrictSSL": false }
在VS代码中: 单击文件->首选项->设置

{
"http.proxyStrictSSL":false,
"http.proxy":"http://USERID:PASSWORD@proxy.domain.com:3128"
}

您似乎尚未将身份验证凭据添加到http.proxy

编辑
%AppData%/Roaming/code/User/settings.json
,添加:

{
...
“http.proxyStrictSSL”:false,
...
}