Allowed HTTP Methods
Understand what HTTP methods to judiciously allow for better security as REST APIs are built on HTTP methods.
We'll cover the following...
In this lesson, we’ll try to understand why we should restrict the use of some HTTP methods. So, first, let’s have a primer on the HTTP methods used in REST—which are safe, which are idempotent, and which are cacheable.
HTTP/HTML
Hypertext Transfer Protocol (HTTP) is an application layer protocol for transmitting hypermedia documents, such as HTML. Hypermedia, an extension of the term hypertext, is a nonlinear medium of information that includes graphics, audio, video, plain text, and hyperlinks.
A few points ...