Add Proxy support
See original GitHub issueHello! Is it possible to add support of socks5, socks4, http and https proxies? something like this:
axios({
method: 'GET',
url: 'https://google.com',
proxyurl: 'socks://196.146.157.1:1486',
})
or
axios({
method: 'GET',
url: 'https://google.com',
proxytype: 'socks5',
proxy: '196.146.157.1:1486'
})
Issue Analytics
- State:
- Created 5 years ago
- Reactions:9
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Proxy Support - Signal Support
The app can automatically configure proxy support when you tap on a link or scan the QR code from any other app. Manage...
Read more >Use a proxy server in Windows - Microsoft Support
To set up a proxy server connection manually · Select the Start button, then select Settings > Network & internet > Proxy. ·...
Read more >How to Set Up a Proxy Server on Your PC, Mac, or Web Browser
Press the Windows + I keys simultaneously to access the Windows Settings menu. · On Windows 10, click Settings > Network & Internet...
Read more >9. Proxy Support — Ansible Tower Administration Guide v3.3.1
To provide proxy server support, Tower handles proxied requests (such as ELB in front of Tower, HAProxy, Squid, and tinyproxy) via the REMOTE_HOST_HEADERS...
Read more >VEN Proxy Support - Illumio Technical Documentation
Configuration for a Windows Proxy Server ... If proxies are statistically configured, you can configure using one of the following two methods: ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You can currently use HTTP(s) proxies with the
proxy
option. You can create an axios instance with these options so you don’t have to specify them with each request. Socks proxies are not supported.Maybe it`s not in related, but when I use axios proxy to send a request in corporate network, i got an error like this… On that screenshot: “Access denied”
The code that i used:
After several hours i have made a decision to make a unirest request and it worked like i expected