Huachao / vscode-restclient

REST Client Extension for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=humao.rest-client
MIT License
5.24k stars 436 forks source link

Socks5 proxy support (feature request) #194

Open mfonsen opened 6 years ago

mfonsen commented 6 years ago

Steps to Reproduce:

  1. start vscode with socks5 proxy settings: code --proxy-server="socks5://localhost:12345"
  2. make a http request

The request will not go through the socks5 proxy. Instead the resource is accessed directly.

If this would be seen as a valuable feature, this could be implemented using two helper modules as described in: https://github.com/request/request/issues/141#issuecomment-38698649.

Another solution could be to document that only http/https proxies are supported.

Huachao commented 6 years ago

@mfonsen, nice suggestion, I think we should support this, however we currently rely on the vscode http.proxy setting, currently we will only support http and https proxy. I will document this in README.

edurguti commented 2 years ago

Still no support for socks5?