blob: b56a88e7da8a30ffa595090b3287aef9157516a9 (
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
|
---
title: Proxy-Authorization
slug: Web/HTTP/Headers/Proxy-Authorization
translation_of: Web/HTTP/Headers/Proxy-Authorization
---
<div>{{HTTPSidebar}}</div>
<p>HTTP <strong><code>Proxy-Authorization</code></strong> リクエストヘッダーは、プロキシサーバーに対してユーザーエージェントを認証するための認証情報を保持し、ふつうはサーバーが {{HTTPStatus("407")}} <code>Proxy Authentication Required</code> ステータスと {{HTTPHeader("Proxy-Authenticate")}} ヘッダーを返した後に使われます。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">ヘッダー種別</th>
<td>{{Glossary("Request header","リクエストヘッダー")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name","禁止ヘッダー名")}}</th>
<td>いいえ</td>
</tr>
</tbody>
</table>
<h2 id="構文">構文</h2>
<pre class="syntaxbox notranslate">Proxy-Authorization: <type> <credentials></pre>
<h2 id="ディレクティブ">ディレクティブ</h2>
<dl>
<dt><type></dt>
<dd><a href="/ja/docs/Web/HTTP/Authentication#Authentication_schemes">認証の種類</a>。一般的には <a href="/ja/docs/Web/HTTP/Authentication#Basic_authentication_scheme">"Basic"</a> です。<a href="http://www.iana.org/assignments/http-authschemes/http-authschemes.xhtml">認証方法の IANA レジストリ</a>も参照してください。</dd>
<dt><credentials></dt>
<dd>"Basic" 認証方式を使用している場合、認証情報は次のように構築されます。
<ul>
<li>コロンで結合したユーザー名とパスワード (<code>aladdin:opensesame</code>)。</li>
<li>結果の文字列は <a href="/ja/docs/Web/API/WindowBase64/Base64_encoding_and_decoding">Base64</a> でエンコードされます (<code>YWxhZGRpbjpvcGVuc2VzYW1l</code>)。</li>
</ul>
<div class="note">
<p><strong>メモ</strong>: Base64 エンコードは暗号化でもハッシュでもありません。この方法の安全性はクリアテキストで認証情報を送るのと同等です (Base64 は可逆エンコーディングです)。 Basic 認証は HTTPS との組み合わせで使用することをお勧めします。</p>
</div>
</dd>
</dl>
<h2 id="例">例</h2>
<pre class="notranslate">Proxy-Authorization: Basic YWxhZGRpbjpvcGVuc2VzYW1l
</pre>
<h2 id="仕様書">仕様書</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">題名</th>
</tr>
<tr>
<td>{{RFC("7235", "Proxy-Authorization", "4.4")}}</td>
<td>HTTP/1.1: Authentication</td>
</tr>
<tr>
<td>{{RFC("7617")}}</td>
<td>The 'Basic' HTTP Authentication Scheme</td>
</tr>
</tbody>
</table>
<h2 id="関連情報">関連情報</h2>
<ul>
<li><a href="/ja/docs/Web/HTTP/Authentication">HTTP 認証</a></li>
<li>{{HTTPHeader("Proxy-Authenticate")}}</li>
<li>{{HTTPHeader("WWW-Authenticate")}}</li>
<li>{{HTTPHeader("Authorization")}}</li>
<li>{{HTTPStatus("401")}}, {{HTTPStatus("403")}}, {{HTTPStatus("407")}}</li>
</ul>
|