--- title: Date slug: Web/HTTP/Headers/Date tags: - Cabeçalho Geral - HTTP - Referencia - cabeçalho translation_of: Web/HTTP/Headers/Date ---
O cabeçalho geral HTTP Date
contém a data e a hora que a mensagem foi gerada.
Note que Date
é listado em nomes de cabeçalhos proibidos na especificação do fetch - então este código não enviará o cabeçalho Date
:
fetch('https://httpbin.org/get', { 'headers': { 'Date': (new Date()).toUTCString() } })
Tipo de cabeçalho | {{Glossary("General header")}} |
---|---|
{{Glossary("Forbidden header name")}} | sim |
Date: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT
Meridiano de Greenwich. Datas HTTP são sempre expressadas em GMT, nunca em tempo local.
Date: Wed, 21 Oct 2015 07:28:00 GMT
new Date().toUTCString() // "Mon, 09 Mar 2020 08:13:24 GMT"
Especificação |
Título |
---|---|
{{RFC("7231", "Date", "7.1.1.2")}} | Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content |
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
{{Compat("http.headers.Date")}}