Connect to server through proxy












0















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
}









share|improve this question




















  • 2





    I believe you are looking for http.Transport, which can be set on an http.Client.

    – Gavin
    Nov 21 '18 at 14:49


















0















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
}









share|improve this question




















  • 2





    I believe you are looking for http.Transport, which can be set on an http.Client.

    – Gavin
    Nov 21 '18 at 14:49
















0












0








0








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
}









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 '18 at 17:11







DarkSkylo

















asked Nov 21 '18 at 14:37









DarkSkyloDarkSkylo

33




33








  • 2





    I believe you are looking for http.Transport, which can be set on an http.Client.

    – Gavin
    Nov 21 '18 at 14:49
















  • 2





    I believe you are looking for http.Transport, which can be set on an http.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














1 Answer
1






active

oldest

votes


















2














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"))





share|improve this answer


























  • 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











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
});


}
});














draft saved

draft discarded


















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









2














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"))





share|improve this answer


























  • 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
















2














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"))





share|improve this answer


























  • 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














2












2








2







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"))





share|improve this answer















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"))






share|improve this answer














share|improve this answer



share|improve this answer








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



















  • 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




















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

A Topological Invariant for $pi_3(U(n))$