aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/http/headers/timing-allow-origin/index.html
blob: 893970a4213d767fe5ddb9742dbe3c73f631eab7 (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
---
title: Timing-Allow-Origin
slug: Web/HTTP/Headers/Timing-Allow-Origin
tags:
  - CORS
  - HTTP
  - Reference
  - Timing-Allow-Origin
  - header
translation_of: Web/HTTP/Headers/Timing-Allow-Origin
---
<div>{{HTTPSidebar}}</div>

<p><strong><code>Timing-Allow-Origin</code></strong> レスポンスヘッダーは、 <a href="/ja/docs/Web/API/Resource_Timing_API">Resource Timing API</a> の機能を介して取得された属性の値の表示を許可されているオリジンを指定します。そうでない場合、クロスオリジンの制限によりゼロとして報告されます。</p>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">ヘッダー種別</th>
   <td>{{Glossary("Response header", "レスポンスヘッダー")}}</td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Forbidden header name", "禁止ヘッダー名")}}</th>
   <td>いいえ</td>
  </tr>
 </tbody>
</table>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox notranslate">Timing-Allow-Origin: *
Timing-Allow-Origin: &lt;origin&gt;[, &lt;origin&gt;]*
</pre>

<h2 id="Directives" name="Directives">ディレクティブ</h2>

<dl>
 <dt><code>*</code></dt>
 <dd>サーバーはワイルドカードとして "*" を指定することができ、それによって全てのオリジンがタイミングリソースを見ることができます。</dd>
 <dt><code>&lt;origin&gt;</code></dt>
 <dd>タイミングリソースを表示できる URI を指定します。 複数のオリジンをカンマ区切りで指定できます。</dd>
</dl>

<h2 id="Examples" name="Examples"></h2>

<p>リソースがタイミングリソースを表示できるようにする場合。</p>

<pre class="notranslate">Timing-Allow-Origin: *</pre>

<p><code>https://developer.mozilla.org</code> がタイミングリソースを表示できるようにするには、次のように指定できます。</p>

<pre class="notranslate">Timing-Allow-Origin: https://developer.mozilla.org</pre>

<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>
 <tbody>
  <tr>
   <td>{{SpecName('Resource Timing 3', '#sec-timing-allow-origin', 'Timing-Allow-Origin')}}</td>
   <td>{{Spec2("Resource Timing 3")}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>

<p>{{Compat("http.headers.Timing-Allow-Origin")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li><a href="/ja/docs/Web/API/Resource_Timing_API">Resource Timing API</a></li>
 <li><a href="/ja/docs/Web/API/Resource_Timing_API/Using_the_Resource_Timing_API">Resource Timing API の使用</a></li>
 <li>{{HTTPHeader("Vary")}}</li>
</ul>