HTTP Methods - TMOS 201 Flashcards
1
Q
What is a GET request?
A
It is used to get a web resource from the server.
2
Q
What is a HEAD request?
A
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.
3
Q
What is a POST method?
A
POST posts data on the servers.
4
Q
What is the PUT method?
A
PUT asks the server to delete data.
5
Q
What is the TRACE method?
A
It asks the server to return an action trace for diagnosis.
6
Q
What is the OPTIONS method?
A
It asks the server to return the list of supported request methods.
7
Q
What is the CONNECT method?
A
It tells the proxy to connect to another host. It’s mostly used to setup proxy SSL connections.