_ _ _____ _____ ____
| | | |_ _|_ _| _ \
| |_| | | | | | | |_) |
| _ | | | | | | __/
|_| |_| |_| |_| |_|
Hyper Textual Protocol
Here should go some fancy explanation as to what HTTP is.
HTTP Methods
Request methods indicate the purpose of the requests and what is expected in return if the request is
successful.
- POST - submits something to the specified resource, often causing a change in server state.
- PUT - Replaces all current representations of the target resource with the request content.
- GET - Requests a representation of the specified resource. Should not contain request content.
- DELETE - deletes the specified resource.
- HEAD - Asks for an identical response to a GET request, but without a response body.
- CONNECT - Establishes a tunnel to the server identified by the target resource.
- OPTIONS - describes communication options for the target resource.
- TRACE - performs a message loop-back test along the path to the target resource.
- PATCH - applies partial modifications to a resource.