aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/web/http/headers/allow/index.html
blob: 8582cb58f4708318dfb11a706aed0d0c937888b1 (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
---
title: Allow
slug: Web/HTTP/Headers/Allow
tags:
  - Cabeçalho de Entidade
  - Cabeçalho de HTTP
  - HTTP
  - Referencia
  - cabeçalho
translation_of: Web/HTTP/Headers/Allow
---
<div>{{HTTPSidebar}}</div>

<p>O cabeçalho <code><strong>Allow</strong></code> lista os métodos que um recurso suporta.</p>

<p>Este cabeçalho deve ser enviado se o servidor responder com um código de estado {{HTTPStatus("405")}} <code>Method Not Allowed</code> para indicar que métodos de pedido podem ser utilizados. Um cabeçalho <code>Allowed</code> vazio indica que o recurso não permite métodos de pedido, que podem ocorrer temporariamente para um dado recurso, por exemplo.</p>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">Categoria de cabeçalho</th>
   <td>{{Glossary("Entity header")}}</td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Forbidden header name")}}</th>
   <td>não</td>
  </tr>
 </tbody>
</table>

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

<pre class="syntaxbox notranslate">Allow: &lt;métodos-de-http&gt;
</pre>

<h2 id="Diretivos">Diretivos</h2>

<dl>
 <dt>&lt;métodos-de-http&gt;</dt>
 <dd>Uma lista de <a href="/en-US/docs/Web/HTTP/Methods">métodos de pedido HTTP</a> permitidos separados por vírgulas.</dd>
</dl>

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

<pre class="notranslate">Allow: GET, POST, HEAD</pre>

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

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Especificação</th>
   <th scope="col">Titulo</th>
  </tr>
  <tr>
   <td>{{RFC("7231", "Allow", "7.4.1")}}</td>
   <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
  </tr>
 </tbody>
</table>

<h2 id="Ver_também">Ver também</h2>

<ul>
 <li>{{HTTPStatus("405")}}</li>
 <li>{{HTTPHeader("Server")}}</li>
</ul>