英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论