Does crawlee support sock5 proxies with authentication?
Does crawlee support sock5 proxies with authentication?
I am building a crawler based in crawlee with playwright.
And it's need to use sock5 proxies with authentication.
But I don't find the anything about that in the crawlee document .
The playwright is support sock5 proxies with authentication. But I don't know how to use it in the cralwee.
https://playwright.dev/docs/api/class-browser
Somebody could tell me? Thanks
Browser | Playwright
A Browser is created via browserType.launch(). An example of using a [Browser] to create a [Page]:
3 Replies
Someone will reply to you shortly. In the meantime, we’ve found some posts that could help answer your question.
adverse-sapphireOP•7mo ago
this is my proxy string ,is it right?

ratty-blush•6mo ago
A SOCKS5 proxy URL that requires authentication follows this format:
socks5://username:password@host:port
host -> The IP address (or hostname) of the proxy server.
port -> The port number the proxy server is listening on (As far as I know, default for SOCKS5 is 1080).
Make sure to use the actual credentials and server details for your proxy.