We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, is there a SOCKS-proxy support? I see that I can use HTTP/S proxies. When will you implement the support of SOCKS4/5?
The text was updated successfully, but these errors were encountered:
I found it is support the SOCKS proxy in Windows10, you can test like this.
proxyURL, err := url.Parse("socks5://127.0.0.1:1080") // Proxy URL if err != nil { log.Panicln(err) } resp, err := grequests.Get("http://www.levigross.com/", &grequests.RequestOptions{Proxies: map[string]*url.URL{ "http": proxyURL, "https": proxyURL, }}) if err != nil { log.Println(err) } if resp.Ok != true { log.Println("Request did not return OK") } log.Println(resp)
Sorry, something went wrong.
No branches or pull requests
Hello, is there a SOCKS-proxy support? I see that I can use HTTP/S proxies. When will you implement the support of SOCKS4/5?
The text was updated successfully, but these errors were encountered: