COMMON HTTP REQUEST METHODS AND USES

   


COMMON HTTP REQUEST METHODS AND USES

    • HTTP defines a set of request methods to indicate the desired action to be performed.

      • GET: retrieve data.
      • HEAD: identical to GET request, but without the response body.
      • POST: submit an entity to the specified resource.
      • PUT: modify data with the request payload.
      • DELETE: delete the specified resource.
      • CONNECT: establish a network connection to a web server.
      • OPTIONS: find out the HTTP methods and other options supported.
      • TRACE: performs a message loop-back test.
      • PATCH: apply partial modifications to a resource.

    Post a Comment