Cheatsheet: Difference between revisions

Content added Content deleted
Line 294:
<br />
 
= ;HTTP Request Methods=
GET: Retrieve Data
HEAD: Header only without Response Body
Line 303:
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
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 =