无法获得本地颁发者证书vscode

时间:2016-01-21 10:58:20

标签: proxy visual-studio-code corporate

我正在尝试为VSCode安装扩展程序。但无法获得本地发行人证书。 我的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 }

2 个答案:

答案 0 :(得分:2)

在VS代码中: 点击文件 - >首选项 - >设置

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

您似乎尚未向http.proxy

添加身份验证凭据

答案 1 :(得分:0)

编辑%AppData%/Code/User/settings.json,并添加:

{
    ...
    "http.proxyStrictSSL":false,
    ...
}