Cheatsheet: Difference between revisions

Content added Content deleted
Line 294: Line 294:
<br />
<br />


= HTTP Request Methods=
;HTTP Request Methods
GET: Retrieve Data
GET: Retrieve Data
HEAD: Header only without Response Body
HEAD: Header only without Response Body
Line 303: Line 303:
OPTIONS: Returns the HTTP methods that the server supports for the specified URL
OPTIONS: Returns the HTTP methods that the server supports for the specified URL
TRACE: Performs a message loop back test to see what (if any) changes or additions have been made by intermediate servers
TRACE: Performs a message loop back test to see what (if any) changes or additions have been made by intermediate servers
PATCH: Applies partial modifications to a resource.
PATCH:

; PUT vs PATCH
PUT method only allows a complete replacement of a document.
PATCH is used to make changes to part of the resource at a location.


= SSL Handshake =
= SSL Handshake =