The HTTP Trailer request and response header allows the sender to include additional fields at the end of chunked messages in order to supply metadata that might be dynamically generated while the message body is sent.
Note: The TE request header needs to be set to trailers to allow trailer fields.
Warning: Developers cannot access HTTP trailers via the Fetch API or XHR. Additionally, browsers ignore HTTP trailers, with the exception of Server-Timing. See Browser compatibility for more information.
| Header type | Request header, Response header, Content header |
|---|---|
| Forbidden request header | Yes |
Trailer: header-namesheader-namesHTTP header fields which will be present in the trailer part of chunked messages. The following header names are disallowed:
Content-Encoding, Content-Type, Content-Range, and TrailerAuthorization or Set-Cookie)Transfer-Encoding and Content-Length)Host)Cache-Control, Max-Forwards, or TE)Some browsers support showing server timing data in developer tools when the Server-Timing header is sent as a trailer. In the following response, the Trailer header is used to indicate that a Server-Timing header will follow the response body. A metric custom-metric with a duration of 123.4 milliseconds is sent:
HTTP/1.1 200 OK
Transfer-Encoding: chunked
Trailer: Server-Timing
--- response body ---
Server-Timing: custom-metric;dur=123.4