There was a new section added in R4 that talks about that the server should return the default timezone in the HTTP Response header using the “Date
” header.
If the server has a default timezone, it SHOULD return the default timezone in the HTTP Response headers using the "
Date
" header.
Is there an example of what the value might look like?
https://tools.ietf.org/html/rfc7231#section-7.1.1.2 already defines the Date header to be:
The “Date” header field represents the date and time at which the
message was originated.
Most of the servers already has built-in functionality to return the Date header in UTC timezone.
Is the R4 spec saying that the server should include the Date header with the timestamp of when the request was processed using the timezone of the server or in some other format that only indicates the timezone of the server?
Thanks