From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001
From: Peter Bengtsson <mail@peterbe.com>
Date: Tue, 8 Dec 2020 14:40:17 -0500
Subject: initial commit

---
 files/ja/web/http/methods/get/index.html | 80 ++++++++++++++++++++++++++++++++
 1 file changed, 80 insertions(+)
 create mode 100644 files/ja/web/http/methods/get/index.html

(limited to 'files/ja/web/http/methods/get/index.html')

diff --git a/files/ja/web/http/methods/get/index.html b/files/ja/web/http/methods/get/index.html
new file mode 100644
index 0000000000..af3a799447
--- /dev/null
+++ b/files/ja/web/http/methods/get/index.html
@@ -0,0 +1,80 @@
+---
+title: GET
+slug: Web/HTTP/Methods/GET
+tags:
+  - HTTP
+  - HTTP リクエストメソッド
+  - Reference
+  - Request method
+  - リクエストメソッド
+  - リファレンス
+translation_of: Web/HTTP/Methods/GET
+---
+<p>{{HTTPSidebar}}</p>
+
+<p><strong>HTTP の <code>GET</code> メソッド</strong>は、特定のリソースの表現をリクエストします。 <code>GET</code> を使用したリクエストはデータを受け取るだけです。</p>
+
+<table class="properties">
+ <tbody>
+  <tr>
+   <th scope="row">リクエストの本文</th>
+   <td>なし</td>
+  </tr>
+  <tr>
+   <th scope="row">成功時のレスポンスの本文</th>
+   <td>あり</td>
+  </tr>
+  <tr>
+   <th scope="row">{{Glossary("Safe", "安全性")}}</th>
+   <td>あり</td>
+  </tr>
+  <tr>
+   <th scope="row">{{Glossary("Idempotent", "べき等性")}}</th>
+   <td>あり</td>
+  </tr>
+  <tr>
+   <th scope="row">{{Glossary("Cacheable", "キャッシュ")}}</th>
+   <td>可</td>
+  </tr>
+  <tr>
+   <th scope="row">HTML フォームでの使用</th>
+   <td>可</td>
+  </tr>
+ </tbody>
+</table>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">GET /index.html
+</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", "GET", "4.3.1")}}</td>
+   <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
+  </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<p class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</p>
+
+<p>{{Compat("http.methods.GET")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/HTTP/Headers">HTTP ヘッダー</a></li>
+ <li>{{HTTPHeader("Range")}}</li>
+ <li>{{HTTPMethod("POST")}}</li>
+</ul>
-- 
cgit v1.2.3-54-g00ecf