HTTP 메서드 참조
HTTP 메서드 참조: GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS.
GETSafe: ✓Idempotent: ✓
Retrieve a resource. No body. Results may be cached.
GET /users/123POSTSafe: ✗Idempotent: ✗
Create a new resource or trigger an action. Has body.
POST /usersPUTSafe: ✗Idempotent: ✓
Replace an entire resource. Idempotent.
PUT /users/123PATCHSafe: ✗Idempotent: ✗
Partial update of a resource.
PATCH /users/123DELETESafe: ✗Idempotent: ✓
Delete a resource.
DELETE /users/123HEADSafe: ✓Idempotent: ✓
Like GET but returns only headers, no body.
HEAD /users/123OPTIONSSafe: ✓Idempotent: ✓
Describes communication options for the target resource.
OPTIONS /usersCONNECTSafe: ✗Idempotent: ✗
Establishes a tunnel (used for HTTPS via proxy).
CONNECT example.com:443TRACESafe: ✓Idempotent: ✓
Performs a loopback test (debugging).
TRACE /path관련 도구
이 도구에 대해
HTTP 메서드 참조: GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS.