获取URL时的Go请求头部信息

huangapple go评论84阅读模式
英文:

Go headers when fetching URLs

问题

当我使用Python编写程序并使用urllib发送请求时,我的标头将作为Python-urllib/3.4发送到服务器。

使用Go程序访问API时,默认情况下会发送哪些HTTP标头到服务器?

英文:

When I write a programme in Python and post a request using urllib, my header is sent to the server as Python-urllib/3.4

What HTTP headers are sent to a server by default when accessing an API with a Go programme?

答案1

得分: 0

如果你只是执行一个 http.Get 请求,那么请求头应包含以下信息:

User-Agent: Go-http-client/1.1
Accept-Encoding: gzip
英文:

If you for example just do a http.Get then just

User-Agent: Go-http-client/1.1
Accept-Encoding: gzip

huangapple
  • 本文由 发表于 2015年12月14日 11:31:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/34259350.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定