将 HTTP 请求中的值作为参数或标头传递有什么区别,如下例所示:
HTTP 请求:
GET /<api version>/<account> HTTP/1.1
Host: storage.swiftdrive.com
X-Auth-Token: eaaafd18-0fed-4b3a-81b4-663c99ec1cbb
HTTP 响应:
HTTP/1.1 200 Ok
Date: Thu, 07 Jun 2010 18:57:07 GMT
Server: Apache
Content-Type: text/plain; charset=UTF-8
Content-Length: 32
如果我在请求中使用它们,是否在请求上以及Host
在响应、参数或 HTTP 标头上使用、、 和?X-Auth-Token
Date
Server
Content-Type
Content-Length
curl
我正在开发一个工具,我必须指定这些值是参数还是请求标头,但我不知道该怎么做。
谢谢