Which HTTP method is commonly used to retrieve data from a server?

  • DELETE
  • GET
  • POST
  • PUT
The HTTP method "GET" is commonly used to retrieve data from a server. When a client sends a GET request, it is asking the server to send back a representation of a specified resource. This method is considered safe and idempotent, meaning multiple identical requests should have the same effect as a single request.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *