Connect to server through proxy
I want to connect to a server through proxy server that I have.
I am searching for something that is similar to Python's HTTPConnection.set_tunnel, is there something like this in golang?
----edit-----
I'm trying to create a connection to a server that allows self signed certificates & transfers through proxy, will this code work properly?
func CreateProxyClient(serverProxy string, sid string, portProxy int) (*Client, error) {
http.DefaultTransport.(*http.Transport).TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
proxyUrl, _ := url.Parse(serverProxy+":"+strconv.Itoa(portProxy))
tr := &http.Transport{
Proxy: http.ProxyURL(proxyUrl),
}
var netClient = &http.Client{
Timeout: time.Second * 10,
Transport: tr,
}
return &Client{netClient, serverProxy, sid}, nil
}
http go http-proxy
add a comment |
I want to connect to a server through proxy server that I have.
I am searching for something that is similar to Python's HTTPConnection.set_tunnel, is there something like this in golang?
----edit-----
I'm trying to create a connection to a server that allows self signed certificates & transfers through proxy, will this code work properly?
func CreateProxyClient(serverProxy string, sid string, portProxy int) (*Client, error) {
http.DefaultTransport.(*http.Transport).TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
proxyUrl, _ := url.Parse(serverProxy+":"+strconv.Itoa(portProxy))
tr := &http.Transport{
Proxy: http.ProxyURL(proxyUrl),
}
var netClient = &http.Client{
Timeout: time.Second * 10,
Transport: tr,
}
return &Client{netClient, serverProxy, sid}, nil
}
http go http-proxy
2
I believe you are looking forhttp.Transport
, which can be set on anhttp.Client
.
– Gavin
Nov 21 '18 at 14:49
add a comment |
I want to connect to a server through proxy server that I have.
I am searching for something that is similar to Python's HTTPConnection.set_tunnel, is there something like this in golang?
----edit-----
I'm trying to create a connection to a server that allows self signed certificates & transfers through proxy, will this code work properly?
func CreateProxyClient(serverProxy string, sid string, portProxy int) (*Client, error) {
http.DefaultTransport.(*http.Transport).TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
proxyUrl, _ := url.Parse(serverProxy+":"+strconv.Itoa(portProxy))
tr := &http.Transport{
Proxy: http.ProxyURL(proxyUrl),
}
var netClient = &http.Client{
Timeout: time.Second * 10,
Transport: tr,
}
return &Client{netClient, serverProxy, sid}, nil
}
http go http-proxy
I want to connect to a server through proxy server that I have.
I am searching for something that is similar to Python's HTTPConnection.set_tunnel, is there something like this in golang?
----edit-----
I'm trying to create a connection to a server that allows self signed certificates & transfers through proxy, will this code work properly?
func CreateProxyClient(serverProxy string, sid string, portProxy int) (*Client, error) {
http.DefaultTransport.(*http.Transport).TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
proxyUrl, _ := url.Parse(serverProxy+":"+strconv.Itoa(portProxy))
tr := &http.Transport{
Proxy: http.ProxyURL(proxyUrl),
}
var netClient = &http.Client{
Timeout: time.Second * 10,
Transport: tr,
}
return &Client{netClient, serverProxy, sid}, nil
}
http go http-proxy
http go http-proxy
edited Nov 21 '18 at 17:11
DarkSkylo
asked Nov 21 '18 at 14:37
DarkSkyloDarkSkylo
33
33
2
I believe you are looking forhttp.Transport
, which can be set on anhttp.Client
.
– Gavin
Nov 21 '18 at 14:49
add a comment |
2
I believe you are looking forhttp.Transport
, which can be set on anhttp.Client
.
– Gavin
Nov 21 '18 at 14:49
2
2
I believe you are looking for
http.Transport
, which can be set on an http.Client
.– Gavin
Nov 21 '18 at 14:49
I believe you are looking for
http.Transport
, which can be set on an http.Client
.– Gavin
Nov 21 '18 at 14:49
add a comment |
1 Answer
1
active
oldest
votes
You can set environment variable HTTP_PROXY
for HTTP or HTTPS_PROXY
for HTTPS so the default http transport will use it.
Also as an alternative you can create http.Transport
by yourself with Proxy
field set to http.ProxyURL
function call or use you custom implementation.
Example:
proxyURL, _ := url.Parse("http://proxy.example.com:port")
http.DefaultTransport = &http.Transport{
Proxy: http.ProxyURL(proxyURL),
}
// request using proxy
resp, _ := http.Get("https://google.com"))
Seems about right. I just want to see that I unserstand: the http.ProxyUrl function gets the proxy url as a parameter? and after doing that every request I'll send will go through the proxy server?
– DarkSkylo
Nov 21 '18 at 15:38
@DarkSkylo see example I've added
– yanzay
Nov 21 '18 at 15:53
hey @yanzay, Thank you for all the help, please see the changes I made
– DarkSkylo
Nov 21 '18 at 17:11
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53414431%2fconnect-to-server-through-proxy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can set environment variable HTTP_PROXY
for HTTP or HTTPS_PROXY
for HTTPS so the default http transport will use it.
Also as an alternative you can create http.Transport
by yourself with Proxy
field set to http.ProxyURL
function call or use you custom implementation.
Example:
proxyURL, _ := url.Parse("http://proxy.example.com:port")
http.DefaultTransport = &http.Transport{
Proxy: http.ProxyURL(proxyURL),
}
// request using proxy
resp, _ := http.Get("https://google.com"))
Seems about right. I just want to see that I unserstand: the http.ProxyUrl function gets the proxy url as a parameter? and after doing that every request I'll send will go through the proxy server?
– DarkSkylo
Nov 21 '18 at 15:38
@DarkSkylo see example I've added
– yanzay
Nov 21 '18 at 15:53
hey @yanzay, Thank you for all the help, please see the changes I made
– DarkSkylo
Nov 21 '18 at 17:11
add a comment |
You can set environment variable HTTP_PROXY
for HTTP or HTTPS_PROXY
for HTTPS so the default http transport will use it.
Also as an alternative you can create http.Transport
by yourself with Proxy
field set to http.ProxyURL
function call or use you custom implementation.
Example:
proxyURL, _ := url.Parse("http://proxy.example.com:port")
http.DefaultTransport = &http.Transport{
Proxy: http.ProxyURL(proxyURL),
}
// request using proxy
resp, _ := http.Get("https://google.com"))
Seems about right. I just want to see that I unserstand: the http.ProxyUrl function gets the proxy url as a parameter? and after doing that every request I'll send will go through the proxy server?
– DarkSkylo
Nov 21 '18 at 15:38
@DarkSkylo see example I've added
– yanzay
Nov 21 '18 at 15:53
hey @yanzay, Thank you for all the help, please see the changes I made
– DarkSkylo
Nov 21 '18 at 17:11
add a comment |
You can set environment variable HTTP_PROXY
for HTTP or HTTPS_PROXY
for HTTPS so the default http transport will use it.
Also as an alternative you can create http.Transport
by yourself with Proxy
field set to http.ProxyURL
function call or use you custom implementation.
Example:
proxyURL, _ := url.Parse("http://proxy.example.com:port")
http.DefaultTransport = &http.Transport{
Proxy: http.ProxyURL(proxyURL),
}
// request using proxy
resp, _ := http.Get("https://google.com"))
You can set environment variable HTTP_PROXY
for HTTP or HTTPS_PROXY
for HTTPS so the default http transport will use it.
Also as an alternative you can create http.Transport
by yourself with Proxy
field set to http.ProxyURL
function call or use you custom implementation.
Example:
proxyURL, _ := url.Parse("http://proxy.example.com:port")
http.DefaultTransport = &http.Transport{
Proxy: http.ProxyURL(proxyURL),
}
// request using proxy
resp, _ := http.Get("https://google.com"))
edited Nov 21 '18 at 15:52
answered Nov 21 '18 at 14:52
yanzayyanzay
1117
1117
Seems about right. I just want to see that I unserstand: the http.ProxyUrl function gets the proxy url as a parameter? and after doing that every request I'll send will go through the proxy server?
– DarkSkylo
Nov 21 '18 at 15:38
@DarkSkylo see example I've added
– yanzay
Nov 21 '18 at 15:53
hey @yanzay, Thank you for all the help, please see the changes I made
– DarkSkylo
Nov 21 '18 at 17:11
add a comment |
Seems about right. I just want to see that I unserstand: the http.ProxyUrl function gets the proxy url as a parameter? and after doing that every request I'll send will go through the proxy server?
– DarkSkylo
Nov 21 '18 at 15:38
@DarkSkylo see example I've added
– yanzay
Nov 21 '18 at 15:53
hey @yanzay, Thank you for all the help, please see the changes I made
– DarkSkylo
Nov 21 '18 at 17:11
Seems about right. I just want to see that I unserstand: the http.ProxyUrl function gets the proxy url as a parameter? and after doing that every request I'll send will go through the proxy server?
– DarkSkylo
Nov 21 '18 at 15:38
Seems about right. I just want to see that I unserstand: the http.ProxyUrl function gets the proxy url as a parameter? and after doing that every request I'll send will go through the proxy server?
– DarkSkylo
Nov 21 '18 at 15:38
@DarkSkylo see example I've added
– yanzay
Nov 21 '18 at 15:53
@DarkSkylo see example I've added
– yanzay
Nov 21 '18 at 15:53
hey @yanzay, Thank you for all the help, please see the changes I made
– DarkSkylo
Nov 21 '18 at 17:11
hey @yanzay, Thank you for all the help, please see the changes I made
– DarkSkylo
Nov 21 '18 at 17:11
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53414431%2fconnect-to-server-through-proxy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
I believe you are looking for
http.Transport
, which can be set on anhttp.Client
.– Gavin
Nov 21 '18 at 14:49