-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Socks proxy support #79
Comments
Now as workaround |
thanks @artemklevtsov will have a look. can you show me how you do it with curl options? and what kind of "support" are you looking for? |
I tried redirect all requests through local TOR daemon (socks://localhost:9050). Seems your proxy helper now support only http proxy. I passed correct proxy url with |
is there a way I can locally test or send through a public tor or so? |
note to self - in python https://stackoverflow.com/a/33875657/1091766 |
Thank you for the quick reply. You should start tor-daemon before. Now works: cl2 <- crul::HttpClient$new(
url = "http://ifconfig.co",
opts = list(proxy = "socks5://localhost:9050")
)
cl2$get("ip")$parse("utf8") But don't work: cl3 <- crul::HttpClient$new(
url = "http://ifconfig.co",
proxies = crul::proxy(url = "socks5://localhost:9050")
)
cl3$get("ip")$parse("utf8") |
thanks. do you ever use auth (e.g.,, simple auth, user:pwd) with tor? |
can you try again after reinstalling. this should work: crul::HttpClient$new(
url = "http://ifconfig.co",
proxies = proxy(url = "socks5://localhost:9050", auth = NULL)
) have to set |
Hi,
It would be nice to add a socks proxy support to use with TOR for example.
The text was updated successfully, but these errors were encountered: