blob: 584859f5aafaa15e74110cf2e5446f441b0189b7 (
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
|
---
title: 428 Precondition Required
slug: Web/HTTP/Status/428
tags:
- HTTP
- HTTP ステータスコード
- クライアントエラー
- ステータスコード
- リファレンス
translation_of: Web/HTTP/Status/428
---
<p>{{HTTPSidebar}}</p>
<p>HTTP <code><strong>428 Precondition Required</strong></code> レスポンスステータスコードは、サーバーがリクエストを<a href="/ja/docs/Web/HTTP/Conditional_requests">条件付き</a>にする必要があることを示します。</p>
<p>通常、これは {{HTTPHeader("If-Match")}} のような必須の前提条件ヘッダーが<strong>ない</strong>ことを意味します。</p>
<p>前提条件ヘッダーがサーバー側の状態と<strong>一致しない</strong>場合、レスポンスは {{HTTPStatus(412)}} <code>Precondition Failed</code> である必要があります。</p>
<h2 id="ステータス">ステータス</h2>
<pre class="syntaxbox">428 Precondition Required</pre>
<h2 id="仕様">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">タイトル</th>
</tr>
<tr>
<td>{{RFC("6585", "428 Precondition Required" , "3")}}</td>
<td>Additional HTTP Status Codes</td>
</tr>
</tbody>
</table>
<h2 id="関連情報">関連情報</h2>
<ul>
<li><a href="/en-US/docs/Web/HTTP/Conditional_requests">HTTP conditional requests</a></li>
<li>{{HTTPHeader("If-Match")}}</li>
<li>{{HTTPStatus(412)}}</li>
</ul>
|