Wednesday, August 9, 2023

HTTP Requests

 

HTTP methods,

It's good to know at least 9/39 of these methods:


GET Method: Gets data from a server.

POST Method: Sends data to a server to create something new.

PUT Method: Changes something that's already on a server.

PATCH Method: Changes part of something on a server.

DELETE Method: Removes something from a server.

HEAD Method: Gets information about something on a server.

OPTIONS Method: Tells you how you can interact with something on a server.

TRACE Method: This shows the path of communication between you and the server.

CONNECT Method: This makes a special kind of connection to a server.



Reference  




No comments:

Post a Comment