Skip to content

Commit 25130c2

Browse files
committed
Create Http request method
1 parent 31f9617 commit 25130c2

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

Http request method

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
HTTP request methods
2+
3+
HTTP defines a set of request methods to indicate the desired action to be performed for a given resource. Although they can also be nouns, these request methods are sometimes referred to as HTTP verbs. Each of them implements a different semantic, but some common features are shared by a group of them: e.g. a request method can be safe, idempotent, or cacheable.
4+
5+
GET
6+
The GET method requests a representation of the specified resource. Requests using GET should only retrieve data.
7+
8+
HEAD
9+
The HEAD method asks for a response identical to a GET request, but without the response body.
10+
11+
POST
12+
The POST method submits an entity to the specified resource, often causing a change in state or side effects on the server.
13+
14+
PUT
15+
The PUT method replaces all current representations of the target resource with the request payload.
16+
17+
DELETE
18+
The DELETE method deletes the specified resource.
19+
20+
CONNECT
21+
The CONNECT method establishes a tunnel to the server identified by the target resource.
22+
23+
OPTIONS
24+
The OPTIONS method describes the communication options for the target resource.
25+
26+
TRACE
27+
The TRACE method performs a message loop-back test along the path to the target resource.
28+
29+
PATCH
30+
The PATCH method applies partial modifications to a resource.
31+
32+
Specifications
33+
Specification
34+
HTTP Semantics
35+
# CONNECT
36+
HTTP Semantics
37+
# DELETE
38+
HTTP Semantics
39+
# GET
40+
HTTP Semantics
41+
# HEAD
42+
HTTP Semantics
43+
# OPTIONS
44+
HTTP Semantics
45+
# POST
46+
HTTP Semantics
47+
# PUT
48+
HTTP Semantics
49+
# TRACE
50+
Browser compatibility
51+
Error loading BCD data
52+
53+
See also
54+
HTTP headers

0 commit comments

Comments
 (0)