go语言在请求http时加入自定义http header的方法
2018-10-15 17:33
阅读:561
本文实例讲述了go语言在请求http时加入自定义http header的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:
client := &http.Client{]
req, err := http.NewRequest(POST,
req.Header.Add(User-Agent, myClient)
resp, err := client.Do(req)
defer resp.Body.Close()
希望本文所述对大家的Go语言程序设计有所帮助。
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:go语言在请求http时加入自定义http header的方法
文章链接:http://soscw.com/index.php/essay/18752.html
文章标题:go语言在请求http时加入自定义http header的方法
文章链接:http://soscw.com/index.php/essay/18752.html
评论
亲,登录后才可以留言!