值必须匹配正则表达式 '^https?://([^@
Value must match regex '^https?://([^@
我正在尝试通过在 VSCode 中导入我的代理来更新我的设置。
我收到以下错误:
Value must match regex '^https?://([^:]*(:[^@]*)?@)?([^:]+|\[[:0-9a-fA-F]+\])(:\d+)?/?$|^$'
我的设置是
"http.proxy": "http://user:sample.proxy.com:123"
"https.proxy": "http://user:sample.proxy.com:123"
"http.proxyStrictSSL": false
有什么我需要改变的吗?
该错误为您提供了所需的所有信息;它不符合要求的格式。
通常,如果您想包含用户名和密码以进行身份验证,则需要采用以下格式:
http://<user>:<password>@<url><:port>
"http.proxy": "http://user:password@sample.proxy.com:port#"
我正在尝试通过在 VSCode 中导入我的代理来更新我的设置。
我收到以下错误:
Value must match regex '^https?://([^:]*(:[^@]*)?@)?([^:]+|\[[:0-9a-fA-F]+\])(:\d+)?/?$|^$'
我的设置是
"http.proxy": "http://user:sample.proxy.com:123"
"https.proxy": "http://user:sample.proxy.com:123"
"http.proxyStrictSSL": false
有什么我需要改变的吗?
该错误为您提供了所需的所有信息;它不符合要求的格式。
通常,如果您想包含用户名和密码以进行身份验证,则需要采用以下格式:
http://<user>:<password>@<url><:port>
"http.proxy": "http://user:password@sample.proxy.com:port#"