What is a GET request?
It is used to get a web resource from the server.
What is a HEAD request?
IThe HEAD method asks for a response identical to that of a GET request, but without the response bodymethod. Local cache copy information are available from the header.
What is a POST method?
POST posts data on the servers.
What is the PUT method?
PUT asks the server to delete data.
What is the TRACE method?
It asks the server to return an action trace for diagnosis.
What is the OPTIONS method?
It asks the server to return the list of supported request methods.
What is the CONNECT method?
It tells the proxy to connect to another host. It’s mostly used to setup proxy SSL connections.