aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/http/status/100/index.html
blob: 74269273e1b5c79c6b445797b59c359487d84af9 (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
---
title: 100 Continue
slug: Web/HTTP/Status/100
tags:
  - HTTP
  - Informational
  - ステータスコード
translation_of: Web/HTTP/Status/100
---
<p>{{HTTPSidebar}}</p>

<p>HTTP <strong><code>100 Continue</code></strong> 情報ステータスレスポンスコードは、これまでのすべてが OK であり、クライアントが要求を続行するか、または要求がすでに終了している場合は無視することを示します。<br>
 <br>
 サーバーが要求のヘッダーをチェックするようにするには、クライアントは最初の要求でヘッダーとして{{HTTPHeader("Expect")}}<code>: 100-continue</code> を送信し、本文を送信する前にレスポンスとして <code>100 Continue</code> ステータスコードを受け取ります。</p>

<h2 id="ステータス">ステータス</h2>

<pre class="syntaxbox">100 Continue</pre>

<h2 id="仕様">仕様</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様</th>
   <th scope="col">タイトル</th>
  </tr>
  <tr>
   <td>{{RFC("7231", "100 Continue" , "6.2.1")}}</td>
   <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザの実装状況">ブラウザの実装状況</h2>

<p>{{Compat("http.status.100")}}</p>

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

<ul>
 <li>{{HTTPHeader("Expect")}}</li>
 <li>{{HTTPStatus(417)}}</li>
</ul>