I've found good documentation for the structure of trailer headers at MDN, but I have not been able to find any list of standard HTTP Trailer Header names.
Have these been standardized or codified anywhere? Are there any APIs that are commonly referenced for the use of trailer headers? Are there any HTTP trailer headers that are "generally understood" in terms of their meaning?
Some examples of trailer headers seen in the wild:
X-Streaming-Error
from Pivotal blogExpires
from MDN- gRPC provides facilities for using trailer headers to send meta-data in requests, but doesn't provide much guidance on naming conventions
- The http2 spec provides the unhelpful example trailer header of
foo
- This Stackoverflow post uses the example headers
Content-Length
andDate
(HTTP Chunked Encoding. Need an example of 'Trailer' mentioned in SPEC) - The Wikipedia page for Chunked Transfer Encoding cites 3 names prohibited from use as a trailer header:
Transfer-Encoding, Content-Length and Trailer
Related: