“Content-Type” 用于 HEAD 请求

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

"Content-Type" for HEAD request

问题

应该在 HEAD 请求中提供的 "Content-Type" 参数是空值。

英文:

I'm building a REST API. Before calling a GET endpoint a HEAD request should be sent.

What kind of "Content-Type" parameter should a HEAD request provide?

答案1

得分: 0

不强制在发送GET请求之前发送HEAD请求。 <br/> HTTP HEAD方法请求的是如果使用HTTP GET方法而不是HTTP HEAD方法请求HEAD请求的URL时将返回的标头。HEAD请求/响应没有正文,因此不需要Content-Type标头。

英文:

Its not mandatory to send HEAD request before sending GET request. <br/> The HTTP HEAD method requests the headers that would be returned if the HEAD request's URL was instead requested with the HTTP GET method. HEAD request/response have no body so there is no need of Content-Type header

huangapple
  • 本文由 发表于 2023年2月14日 18:45:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/75446715.html
匿名

发表评论

匿名网友

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

确定