diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/http/status/428 | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/http/status/428')
-rw-r--r-- | files/ja/web/http/status/428/index.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/files/ja/web/http/status/428/index.html b/files/ja/web/http/status/428/index.html new file mode 100644 index 0000000000..584859f5aa --- /dev/null +++ b/files/ja/web/http/status/428/index.html @@ -0,0 +1,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> |