Tor SOCKS5 proxy : ERR_NO_SUPPORTED_PROXIES
See original GitHub issueLunching puppeteer with:
browser = await puppeteer.launch({timeout :90000, headless: false, args: ['--no-sandbox', '--proxy-server="socks5://127.0.0.1:9050"']});
Gives the error:
ERR_NO_SUPPORTED_PROXIES
Ubuntu server used.
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Tor SOCKS5 proxy : ERR_NO_SUPPORTED_PROXIES #1527
9050 port error - no error is coming but it seems it's not using any proxy settings. I am using Tor with password,...
Read more >SOCKS5 Proxy Setup Guide for Tor Browser
Step 2. Go to Advanced then enter the following settings: Enable I use a proxy to connect to the Internet. Proxy Type: SOCKS...
Read more >SOCKS5 - Tor Project | Support
SOCKS5 is an Internet protocol used by Tor. ... It is a general purpose proxy that sits at the layer 5 of the...
Read more >I can't use Tor's socks5 proxy on safari
Open Safari and change the proxy settings 127.0.0.1:8118; Go to https://check.torproject.org/ and see if everything is working.
Read more >How to use Tor socks5 in R getURL - Stack Overflow
Tor is clever enough to understand that the proxy client (RCurl) is trying to use a HTTP proxy, hence the error message in...
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
Get rid of the double-quotes around the proxy address. (And are you sure that shouldn’t be port 9150?)
@aslushnikov @vonGameTheory Why we should use port 9150?, it’s not working for me, I have tried 9050(socket port) and 9051(control port) both ports, all three ports are not working for me.
my code is given below:
let browser = await puppeteer.launch({ headless: false, args: ['--proxy-server=socks5://127.0.0.1:9051'], timeout: 0 });
9150 port error - net::ERR_PROXY_CONNECTION_FAILED 9051 port error - net::ERR_TIMED_OUT 9050 port error - no error is coming but it seems it’s not using any proxy settings.
I am using Tor with password, how to authenticate while connecting.