blob: beccc3eacf7b36c4d90b65dc6d8400cafafea53a (
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
|
---
title: Origin (オリジン)
slug: Glossary/Origin
tags:
- Glossary
- WebMechanics
- オリジン
- セキュリティ
- 用語集
translation_of: Glossary/Origin
---
<p>ウェブコンテンツの<ruby><strong>オリジン</strong><rp> (</rp><rt>Origin</rt><rp>) </rp></ruby>は、ウェブコンテンツにアクセスするために使われる {{Glossary("URL")}} の<em>スキーム</em> (プロトコル)、 <em>ホスト</em> (ドメイン)、 <em>ポート</em> によって定義されます。スキーム、ホスト、ポートがすべて一致した場合のみ、二つのオブジェクトは同じオリジンであると言えます。</p>
<p>操作によっては同じオリジンのコンテンツに限定されており、この制約は {{Glossary("CORS")}} を使用して緩和することができます。</p>
<h2 id="Examples_of_same_origin" name="Examples_of_same_origin">同一オリジンの例</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%;">スキーム (<code>http</code>) およびホスト (<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%;">サーバーは既定で80番ポートで HTTP コンテンツを配信するため、同一オリジン</td>
</tr>
</tbody>
</table>
<h2 id="Examples_of_different_origin" name="Examples_of_different_origin">異なるオリジンの例</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>スキームが異なる</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%;">ホストが異なる</td>
</tr>
<tr>
<td style="width: 50%;"><code>http://example.com</code><br>
<code>http://example.com:8080</code></td>
<td style="width: 50%;">ポートが異なる</td>
</tr>
</tbody>
</table>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</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="Learn_more" name="Learn_more">理解を深める</h2>
<p>詳しくは<a href="/ja/docs/Web/Security/Same-origin_policy">同一オリジンポリシー</a>をご覧ください。</p>
<div>{{QuickLinksWithSubpages("/ja/docs/Glossary")}}</div>
|