aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/http/headers/access-control-request-headers/index.html
blob: bb4f0841a5fbaa3b2c8c0dc2a73f0871bb6b825f (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
---
title: Access-Control-Request-Headers
slug: Web/HTTP/Headers/Access-Control-Request-Headers
translation_of: Web/HTTP/Headers/Access-Control-Request-Headers
---
<div>{{HTTPSidebar}}</div>

<p>O cabeçalho da solicitação <strong><code>Access-Control-Request-Headers</code></strong> é usado ao emitir um {{glossary("preflight request")}} para permitir que o servidor saiba quais cabeçalhos HTTP serão usados quando a solicitação real for feita.</p>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">Header type</th>
   <td>{{Glossary("Request header")}}</td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Forbidden header name")}}</th>
   <td>yes</td>
  </tr>
 </tbody>
</table>

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

<pre class="syntaxbox">Access-Control-Request-Headers: &lt;header-name&gt;, &lt;header-name&gt;, ...
</pre>

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

<dl>
 <dt>&lt;header-name&gt;</dt>
 <dd>Uma lista delimitada por vírgula <a href="/en-US/docs/Web/HTTP/Headers">HTTP headers</a> incluídos na solicitação.</dd>
</dl>

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

<pre>Access-Control-Request-Headers: X-PINGOTHER, Content-Type</pre>

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

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('Fetch','#http-access-control-request-headers', 'Access-Control-Request-Headers')}}</td>
   <td>{{Spec2("Fetch")}}</td>
   <td>Definição inicial.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Compatibilidade com navegadores</h2>

<p>{{Compat("http.headers.Access-Control-Request-Headers")}}</p>

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

<ul>
 <li>{{HTTPHeader("Access-Control-Request-Method")}}</li>
</ul>