登录
首页 >  Golang >  Go问答

使用自定义传输时如何编程 Go 以使用代理?

来源:Golang技术栈

时间:2023-03-30 13:52:13 260浏览 收藏

最近发现不少小伙伴都对Golang很感兴趣,所以今天继续给大家介绍Golang相关的知识,本文《使用自定义传输时如何编程 Go 以使用代理?》主要内容涉及到golang等等知识点,希望能帮到你!当然如果阅读本文时存在不同想法,可以在评论中表达,但是请勿使用过激的措辞~

问题内容

如何根据[代理环境变量](https://www.quora.com/How-do-I-set-the-proxy-setting-using-Linux- command-line-on-Ubuntu-14-04#)编写自动使用代理的 Go 程序?

go get本身[支持](https://stackoverflow.com/questions/10383299/how-do-i- configure-go-to-use-a-proxy)标准[代理环境变量](https://www.quora.com/How-do-I-set-the- proxy-setting-using-Linux-command-line-on-Ubuntu-14-04#),但我说的是 Go 程序/代码本身。

这个博客说,

默认情况下,http.Client 在处理任何 http.Request 之前会检查 HTTP_PROXY 和 HTTPS_PROXY 变​​量。

我试过了,但它不适用于我的以下代码:

tr := &http.Transport{
    TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
client := &http.Client{Transport: tr}
resp, err := client.Get(url)

正确答案

您可以使用 http.ProxyFromEnvironment 方法

  var PTransport = & http.Transport { Proxy: http.ProxyFromEnvironment }
  client: = http.Client { Transport: PTransport }

ProxyFromEnvironment 返回用于给定请求的代理的 URL,如环境变量 HTTP_PROXY、HTTPS_PROXY 和 NO_PROXY(或其小写版本)所示。对于 https 请求,HTTPS_PROXY 优先于 HTTP_PROXY。

我试过下面的代码,它可以工作,只需在终端中添加你的代理详细信息。

export http_proxy='http://user:password@prox-server:3128'
export https_proxy='http://user:password@prox-server:3128'
export HTTP_PROXY='http://user:password@prox-server:3128'
export HTTPS_PROXY='http://user:password@prox-server:3128'



package main



import (

  "fmt"

  "net/http"

  "io/ioutil"

)



func main() {



  var PTransport = & http.Transport {

    Proxy: http.ProxyFromEnvironment

  }

  client: = http.Client {

    Transport: PTransport

  }

  req, err: = http.NewRequest("GET", "https://jsonplaceholder.typicode.com/todos/1", nil)

  req.Header.Add("If-None-Match", `some value`)

  resp, err: = client.Do(req)

  if err != nil {

    panic(err)

  }

  defer resp.Body.Close()



  bodyBytes, err: = ioutil.ReadAll(resp.Body)

  if err != nil {

    panic(err)

  }



  bodyString: = string(bodyBytes)

  fmt.Printf("GET Response = %s \n", string(bodyString))





}

今天带大家了解了golang的相关知识,希望对你有所帮助;关于Golang的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>