Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update methods.md #52

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Continue reading on [RFC7231#4.2.3](https://tools.ietf.org/html/rfc7231#section-

method | description | safe | idem. | cache. | spec
-----: | :---------- | :--: | :---: | :----: | :---
`CONNECT` | "requests that the recipient establish a tunnel to the destination origin server identified by the request-target and, if successful, thereafter restrict its behavior to blind forwarding of packets, in both directions, until the connection is closed." | ✔ | | ✘ | [RFC7231#4.3.6](https://tools.ietf.org/html/rfc7231#section-4.3.6),<br>[RFC2616#9.9](https://tools.ietf.org/html/rfc2616#section-9.9)
`CONNECT` | "requests that the recipient establish a tunnel to the destination origin server identified by the request-target and, if successful, thereafter restrict its behavior to blind forwarding of packets, in both directions, until the connection is closed." | ✔ | | ✘ | [RFC7231#4.3.6](https://tools.ietf.org/html/rfc7231#section-4.3.6),<br>[RFC2616#9.9](https://tools.ietf.org/html/rfc2616#section-9.9)
`DELETE` | "requests that the origin server remove the association between the target resource and its current functionality." | ✘ | ✔ | ✘ | [RFC7231#4.3.5](https://tools.ietf.org/html/rfc7231#section-4.3.5),<br>[RFC2616#9.7](https://tools.ietf.org/html/rfc2616#section-9.7)
`GET` | "requests transfer of a current selected representation for the target resource." | ✔ | ✔ | ✔ | [RFC7231#4.3.1](https://tools.ietf.org/html/rfc7231#section-4.3.1),<br>[RFC2616#9.3](https://tools.ietf.org/html/rfc2616#section-9.3)
`HEAD` | "is identical to GET except that the server MUST NOT send a message body in the response (i.e., the response terminates at the end of the header block)." | ✔ | ✔ | ✔ | [RFC7231#4.3.2](https://tools.ietf.org/html/rfc7231#section-4.3.2),<br>[RFC2616#9.4](https://tools.ietf.org/html/rfc2616#section-9.4)
Expand Down