我如何看到带有 curl 的预告片标题

Red*_*bts 6 curl http-headers

在我的响应标头中,我看到Trailer: Content-MD5, Content-Sources. 如何使用 curl 查看此内容?当我使用-ior时,我没有看到这个输出-v

Vic*_*rov 8

如果您提供--rawkey 和-vcurl,您可以获得 Trailer 的值。

例如:

curl http://localhost:3030/graphql -H 'Content-Type: application/json' --data '{"query": "..."}' -v --raw

*   Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to localhost (127.0.0.1) port 3030 (#0)
> POST /graphql HTTP/1.1
> Host: localhost:3030
> User-Agent: curl/7.58.0
> Accept: */*
> Referer: rbose
> Debug-Request: true
> Content-Type: application/json
> Content-Length: 429
>
* upload completely sent off: 429 out of 429 bytes
< HTTP/1.1 200 OK
< Content-Type: application/json; charset=utf-8
< Trailer: Debug-Request-Time
< Trailer: Debug-Query-Time
< Date: Wed, 20 Feb 2019 12:42:16 GMT
< Transfer-Encoding: chunked
<
43
{"data":{...}}
0
Debug-Query-Time: 288.903µs
Debug-Request-Time: 477.616264ms
Run Code Online (Sandbox Code Playgroud)