We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62ffc68 commit 4ea2ab9Copy full SHA for 4ea2ab9
httpclient/httpclient_methods.go
@@ -1,3 +1,19 @@
1
+// httpclient_methods.go
2
+/* Ref: https://www.rfc-editor.org/rfc/rfc7231#section-8.1.3
3
+
4
++---------+------+------------+
5
+| Method | Safe | Idempotent |
6
7
+| CONNECT | no | no |
8
+| DELETE | no | yes |
9
+| GET | yes | yes |
10
+| HEAD | yes | yes |
11
+| OPTIONS | yes | yes |
12
+| POST | no | no |
13
+| PUT | no | yes |
14
+| TRACE | yes | yes |
15
16
+*/
17
package httpclient
18
19
import "net/http"
0 commit comments