Http Methods
Commonly used HTTP methods GET to fetch data HEAD does the same thing as GET but doesn't who the full response POST to create or change data PUT to replace or modify data DELETE to delete data OPTIONS to show options avail (GET, POST etc) TRACE 👍
The HTTP TRACE method is designed for diagnostic purposes. If enabled, the web server will respond to requests that use the TRACE method by echoing in its response the exact request that was received.
This behavior is often harmless, but occasionally leads to the disclosure of sensitive information such as internal authentication headers appended by reverse proxies.
Last updated
Was this helpful?