🛠️
Tools
Shed
開発者
単位変換
テキスト
財務
健康
時間
数学
イメージ
セキュリティ
ネットワーク
デザイン
データ
English
日本語
한국어
中文
Español
Português
Français
Deutsch
Русский
Italiano
Türkçe
Indonesia
ホーム
/
ネットワークツール
/
HTTPメソッドリファレンス
HTTPメソッドリファレンス
HTTPメソッドの総合リファレンスガイド。
GET
Retrieve a resource or collection of resources from the server. Should not have side effects.
▲
安全
はい
べき等
はい
リクエストボディ
No
レスポンスボディ
はい
主なユースケース
Fetch user profile
List all products
Search results
Download file
一般的なステータスコード
200 OK
304 Not Modified
404 Not Found
401 Unauthorized
POST
Submit data to be processed, creating a new resource or triggering an action. Not idempotent.
▼
PUT
Replace an entire resource with the provided data. Creates the resource if it does not exist.
▼
PATCH
Apply partial modifications to a resource. Only sends the fields that need to be updated.
▼
DELETE
Delete the specified resource. Multiple identical requests should have the same effect.
▼
HEAD
Same as GET but only returns headers, no body. Used to check resource existence or metadata.
▼
OPTIONS
Describes the communication options for the target resource. Used for CORS preflight requests.
▼
TRACE
Performs a message loop-back test along the path to the target resource. Used for diagnostics.
▼
よくある質問
GETとPOSTの違いは何ですか?
+
HTTPメソッドのべき等性とは何ですか?
+
PUTとPATCHはいつ使い分けますか?
+
OPTIONSメソッドの目的は何ですか?
+
DELETEを複数回呼び出しても安全ですか?
+
Comments & Feedback
Comments are powered by
Giscus
. Sign in with GitHub to leave a comment.