blob: f1aae2640ba9ea0b19d791b787668329b1568a03 (
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
|
---
title: Origem
slug: Glossario/Origem
tags:
- Glossary
- Glossário
- Origem
- Security
- Segurança
- WebMechanics
- origin
translation_of: Glossary/Origin
---
<p>O conteúdo de <strong>origem</strong> é definido pelo <em>esquema</em> (protocolo), <em>host</em> (domínio), e <em>porta</em> da {{Glossary("URL")}} usada para acessá-lo. Dois objetos tem a mesma origem somente quando o esquema, host, e porta batem.</p>
<p>Algumas operações são restritas para conteúdos de mesma origem, e essa restrição pode ser ultrapassada usando {{Glossary("CORS")}}.</p>
<h2 id="Exemplos_de_mesma_origem">Exemplos de mesma origem</h2>
<table class="standard-table">
<tbody>
<tr>
<td style="width: 50%;"><code>http://example.com/app1/index.html</code><br>
<code>http://example.com/app2/index.html</code></td>
<td style="width: 50%;">Mesma origem pois possuem o mesmo esquema (<code>http</code>) e mesmo host (<code>example.com</code>)</td>
</tr>
<tr>
<td style="width: 50%;"><code>http://Example.com:80</code><br>
<code>http://example.com</code></td>
<td style="width: 50%;">Mesma origem pois o servidor entrega conteúdo HTTP através da porta 80 por padrão.</td>
</tr>
</tbody>
</table>
<h2 id="Exemplos_de_origens_diferentes">Exemplos de origens diferentes</h2>
<table class="standard-table">
<tbody>
<tr>
<td style="width: 50%;"><code>http://example.com/app1</code><br>
<code>https://example.com/app2</code></td>
<td>Esquemas diferentes</td>
</tr>
<tr>
<td style="width: 50%;"><code>http://example.com</code><br>
<code>http://www.example.com</code><br>
<code>http://myapp.example.com</code></td>
<td style="width: 50%;">Hosts diferentes</td>
</tr>
<tr>
<td style="width: 50%;"><code>http://example.com</code><br>
<code>http://example.com:8080</code></td>
<td style="width: 50%;">Portas diferentes</td>
</tr>
</tbody>
</table>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificação</th>
<th scope="col">Status</th>
<th scope="col">Comentário</th>
</tr>
</thead>
<thead>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#origin', 'origin')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Aprenda_mais">Aprenda mais</h2>
<p>Veja <a href="/en-US/docs/Web/Security/Same-origin_policy">Same-origin policy</a> para mais informações.</p>
<div>{{QuickLinksWithSubpages("/en-US/docs/Glossary")}}</div>
|