blob: f110e557d7c158e74940a5cf325f82d4d91e5619 (
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
|
---
title: Origin
slug: Web/HTTP/Headers/Origin
tags:
- Cabeçalho de requisição
- HTTP
- Origem
- Referencia
- cabeçalho
translation_of: Web/HTTP/Headers/Origin
---
<div>{{HTTPSidebar}}</div>
<p>O cabeçalho de requisição <strong><code>Origin</code></strong> indica onde a requisição se originou. Ele não inclui nenhuma informação do caminho, somente o nome do servidor. Ele é enviado com requisições {{Glossary("CORS")}}, também como requisições {{HTTPMethod("POST")}}. Ele é similar ao cabeçalho {{HTTPHeader("Referer")}}, mas, diferente deste cabeçalho, ele não mostra o caminho inteiro.</p>
<div class="blockIndicator note">
<p><strong>Nota</strong>: O cabeçalho {{httpheader("Origin")}} não é colocado em <a href="/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch">requisições Fetch</a> com um método {{HTTPMethod("HEAD")}} ou {{HTTPMethod("GET")}} (este comportamento foi corrigido no Firefox 65 — veja {{bug(1508661)}}).</p>
</div>
<table class="properties">
<tbody>
<tr>
<th scope="row">Tipo de cabeçalho</th>
<td>{{Glossary("Request 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">Origin: null
Origin: <scheme> "://" <hostname> [ ":" <port> ]
</pre>
<h2 id="Diretivas">Diretivas</h2>
<dl>
<dt><scheme></dt>
<dd>O protocolo que é usado. Usualmente ele é o protocolo HTTP ou na sua versão segura, HTTPS.</dd>
<dt><hostname></dt>
<dd>O nome do domínio do servidor (para <em>host</em> virtual) ou o endereço IP.</dd>
<dt><port> {{optional_inline}}</dt>
<dd>O número da porta TCP que o servidor está escutando. Se a porta não é dada, a porta padrão do serviço requisitado é implítica (e.g., "80" para uma URL HTTP).</dd>
</dl>
<h2 id="Exemplos">Exemplos</h2>
<pre class="notranslate">Origin: https://developer.mozilla.org</pre>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificação</th>
<th scope="col">Comentários</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{RFC("6454", "Origin", "7")}}</td>
<td>Conceito da Origem da Internet</td>
</tr>
<tr>
<td>{{SpecName('Fetch','#origin-header','Origin header')}}</td>
<td>Substitui o cabeçalho <code>Origin</code> como definido na RFC6454.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidade_de_navegador">Compatibilidade de navegador</h2>
<div>{{Compat("http.headers.Origin")}}</div>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li>{{HTTPHeader("Host")}}</li>
<li>{{HTTPHeader("Referer")}}</li>
<li><a href="/en-US/docs/Web/Security/Same-origin_policy">Same-origin policy</a></li>
</ul>
|