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。