LoginSignup
0
0

More than 5 years have passed since last update.

HTTP method

Last updated at Posted at 2018-05-05

What is HTTP

HTTP is a protocol used when web server is in communicating information like documents written by HTML with client.

HTTP method

GET

The GET method requests resource specified URI.
If URI is file name, return contents of that file.
If URI is program name, return output of program.

POST

The POST send data of set of name and value pairs from client.
Use when it send form data in HTML.

HEAD

The HEAD method is same as GET method, but return only HTTP header and no document body.

PUT

The PUT method replace file on server specified URI.

DELETE

The DELETE method delete file on server specified URI.

OPTION

The OPTION method return the HTTP methods that the server supports.

CONNECT

The CONNECT method converts the request connection to a transparent TCP/IP tunnel.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0