aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/http/headers/date/index.html
blob: cd3991f402760739037e87e0a461aecc5d5b6431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
title: Date
slug: Web/HTTP/Headers/Date
tags:
  - Cabeçalho Geral
  - HTTP
  - Referencia
  - cabeçalho
translation_of: Web/HTTP/Headers/Date
---
<div>{{HTTPSidebar}}</div>

<p>O cabeçalho geral HTTP <strong><code>Date</code></strong> contém a data e a hora que a mensagem foi gerada.</p>

<div class="blockIndicator warning">
<p>Note que <code>Date</code> é listado em <a href="https://fetch.spec.whatwg.org/#forbidden-header-name" rel="nofollow noreferrer">nomes de cabeçalhos proibidos</a> na especificação do fetch - então este código não enviará o cabeçalho <code>Date</code>:</p>

<pre class="brush: js notranslate">fetch('https://httpbin.org/get', {
    'headers': {
        'Date': (new Date()).toUTCString()
    }
})</pre>
</div>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">Tipo de cabeçalho</th>
   <td>{{Glossary("General header")}}</td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Forbidden header name")}}</th>
   <td>sim</td>
  </tr>
 </tbody>
</table>

<h2 id="Sintaxe">Sintaxe</h2>

<pre class="syntaxbox notranslate">Date: &lt;day-name&gt;, &lt;day&gt; &lt;month&gt; &lt;year&gt; &lt;hour&gt;:&lt;minute&gt;:&lt;second&gt; GMT
</pre>

<h2 id="Diretivas">Diretivas</h2>

<dl>
 <dt>&lt;day-name&gt;</dt>
 <dd>Dia da semana, um de "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", ou "Sun" (sensível a capitalização). Segunda-feira até domingo em ordem.</dd>
 <dt>&lt;day&gt;</dt>
 <dd>Um dia em número de 2 dígitos, e.g. "04" ou "23".</dd>
 <dt>&lt;month&gt;</dt>
 <dd>Um de "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" (sensível a capitalização). Os meses em ordem de Janeiro a Dezembro.</dd>
 <dt>&lt;year&gt;</dt>
 <dd>Um ano em número de 4 dígitos, e.g. "1990" ou "2016".</dd>
 <dt>&lt;hour&gt;</dt>
 <dd>Uma hora em número de 2 dígitos, e.g. "09" ou "23".</dd>
 <dt>&lt;minute&gt;</dt>
 <dd>Minutos em número de 2 dígitos, e.g. "04" ou "59".</dd>
 <dt>&lt;second&gt;</dt>
 <dd>Segundos em número de 2 dígitos, e.g. "04" ou "59".</dd>
 <dt>GMT</dt>
 <dd>
 <p>Meridiano de Greenwich. Datas HTTP são sempre expressadas em GMT, nunca em tempo local.</p>
 </dd>
</dl>

<h2 id="Exemplos">Exemplos</h2>

<pre class="notranslate">Date: Wed, 21 Oct 2015 07:28:00 GMT
</pre>

<pre class="brush: js notranslate">new Date().toUTCString()
// "Mon, 09 Mar 2020 08:13:24 GMT"</pre>

<h2 id="Especificações">Especificações</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Especificação</th>
   <th scope="col">
    <div class="twocolumns">
    <p>Título</p>
    </div>
   </th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{RFC("7231", "Date", "7.1.1.2")}}</td>
   <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilidade_de_navegador">Compatibilidade de navegador</h2>

<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>

<p>{{Compat("http.headers.Date")}}</p>

<h2 id="Veja_também">Veja também</h2>

<ul>
 <li>{{HTTPHeader("Age")}}</li>
</ul>