blob: 05324461ad3243dd23a520284516f5a7ed15696d (
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
|
---
title: 402 Payment Required
slug: Web/HTTP/Status/402
tags:
- Browser
- Client error
- HTTP
- Status code
- クライアントエラー
- ステータスコード
translation_of: Web/HTTP/Status/402
---
<p>{{HTTPSidebar}}{{SeeCompatTable}}</p>
<p>HTTP の <strong><code>402 Payment Required</code></strong> は、将来使用するために予約されている標準外のクライアントエラーステータスレスポンスコードです。</p>
<p>このコードは、クライアントが支払いをするまでリクエストを処理できないことを示している場合があります。もともとは電子マネーまたは (マイクロ) ペイメントシステムを有効にするために作成されたもので、リクエストされたコンテンツがクライアントが支払いをするまで利用できないことを示していました。しかしながら、標準的な慣例は存在せず、様々なエンティティが様々な場面で使用しています。</p>
<h2 id="Status" name="Status">ステータス</h2>
<pre class="syntaxbox notranslate">402 Payment Required</pre>
<h2 id="Example_response" name="Example_response">レスポンスの例</h2>
<pre class="brush: bash notranslate">HTTP/1.1 402 Payment Required
Date: Wed, 21 Oct 2015 07:28:00 GMT
</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">題名</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{RFC("7231", "402 Payment Required" , "6.5.2")}}</td>
<td>HTTP/1.1: Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("http.status.402")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li><a href="/ja/docs/Web/HTTP/Authentication">HTTP authentication</a></li>
</ul>
|