There are 15 HTTP request methods, and according to the HTTP standard, HTTP requests can use multiple request methods. HTTP 1.0 defines three request methods: GET, POST and HEAD. HTTP 1.1 adds five new request methods: OPTIONS, PUT, DELETE, TRACE and CONNECT.
serial number | method | describe |
---|---|---|
1 | GET | Requests the specified page information and returns the entity body. |
2 | HEAD | Similar to a get request, except that there is no specific content in the returned response, which is used to obtain the header |
3 | post | Submit data to a specified resource for processing (such as submitting a form or uploading a file). The data is contained in the request body. POST requests may result in the creation of new resources and/లేదా ఇప్పటికే ఉన్న వనరులను సవరించడానికి. |
4 | PUT | క్లయింట్ సైడ్ నుండి సర్వర్ కు పంపబడిన డాటా పేజీ యొక్క కంటెంట్ను ప్రామాణికంగా చేస్తుంది. |
5 | DELETE | సర్వర్ ను పేజీని తొలగించాలని అభ్యర్ధిస్తుంది. |
6 | CONNECT | HTTP/1.1 ప్రోక్సీ సర్వర్లకు పిప్ కనెక్షన్స్ చేయగల ప్రొటోకాల్ రిజర్వు చేసింది. |
7 | OPTIONS | క్లయింట్ సైడ్ కు సర్వర్ యొక్క పనితీరును చూడడానికి అనుమతిస్తుంది. |
8 | TRACE | సర్వర్ నుండి అందుబాటులోకి వచ్చిన ఎక్కో అభ్యర్ధనలు ప్రధానంగా పరీక్షకు లేదా నిదానానికి ఉపయోగిస్తారు. |
9 | PATCH | ఎంటిటీ నుండి యురి ద్వారా ప్రతిబింబించే అర్ధంతిక వివరణ కలిగిన పట్టిక ఉంది. |
10 | MOVE | అభ్యర్ధన సర్వర్ నుండి పేజీని మరొక నెట్వర్క్ అడ్రెస్స్కు తరలించేస్తుంది. |
11 | COPY | అభ్యర్ధన సర్వర్ నుండి పేజీని మరొక నెట్వర్క్ అడ్రెస్స్కు కాపీ చేస్తుంది. |
12 | లింక్ | సర్వర్ ను లింక్ సంబంధం ఏర్పాటు చేయాలని అభ్యర్ధిస్తుంది. |
13 | UNLINK | లింక్ ని తీసివేస్తుంది. |
14 | WRAPPED | క్లయింట్ సైడ్ కు ఎంకుషం చేసిన అభ్యర్ధనలను పంపడానికి అనుమతిస్తుంది. |
15 | పొడిగించుట-mothed | ఒప్పందాన్ని మార్చకుండా, అదనపు పద్ధతులను జోడించవచ్చు. |