HTTP Concepts

Request Method (HTTP Verb)

The action a client wants to perform on a resource, specified in the request line. Standard HTTP methods include GET (retrieve), POST (create), PUT (replace), PATCH (partial update), DELETE (remove), HEAD (headers only), OPTIONS (capabilities), and TRACE (echo). Each method has defined semantics around safety and idempotency.

相关协议

相关场景

定义来源

另请参阅