What is difference between Get, Post, Put and Delete?
An HTTP request is a class consisting of HTTP style requests, request lines, request methods, request URL, header fields, and body content.The most common methods that are used by a client in an HTTP request are as follows:
1) GET
Used when the client is requesting a resource on the Web server.
2) POST
Used when the client is sending information or data to the server—for example, filling out an online form (i.e.Sends a large amount of complex data to the Web Server).
3) PUT
Used when the client is sending a replacement document or uploading a new document to the Web server under the request URL.
4) DELETE
Used when the client is trying to delete a document from the Web server, identified by the request URL.
5) HEAD
Used when the client is requesting some information about a resource but not requesting the resource itself.
6) TRACE
Used when the client is asking the available proxies or intermediate servers changing the request to announce themselves.
7) OPTIONS
Used when the client wants to determine other available methods to retrieve or process a document on the Web server.
8) CONNECT
Used when the client wants to establish a transparent connection to a remote host, usually to facilitate SSL-encrypted communication (HTTPS) through an HTTP proxy.
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
759 | Develop |
[c#] 툴바 현재 욜심히 만들고 있는거.. 백업용.. ㅋㅋ
![]() |
hooni | 2013.04.23 | 2852 |
758 | Develop | [ios] 카메라 사용 권한 확인해서 분기하는 방법 | hooni | 2015.02.26 | 2880 |
757 | Develop | [ios] GPS 이용 상태 확인 | hooni | 2015.04.27 | 2925 |
756 | Develop | [android] 간단한 SQLIite 예제 | hooni | 2017.06.14 | 3007 |
755 | Develop | [swift] 실행시간 측정하기 | hooni | 2021.09.14 | 3018 |
754 | Develop |
[Javascript][Ajax] 자바스크립트 강의 산출물
![]() |
hooni | 2019.10.05 | 3025 |
753 | Develop | [js] 모바일 스크롤 방지(해제) | hooni | 2015.04.14 | 3041 |
752 | Develop |
[android] 가속도 센서를 이용한 흔듦(Shake) 감지
![]() |
hooni | 2014.11.04 | 3061 |
751 | Develop | [ios] APNS, Remote Push 수신 시점에서 앱의 3가지 실행 상태 | hooni | 2018.10.19 | 3116 |
750 | Develop |
[ios] binary를 C코드로 변환
![]() |
hooni | 2015.01.03 | 3122 |
749 | Develop | [c] 한글 문자열 출력 | hooni | 2015.11.10 | 3128 |
748 | Develop | [js] URL 파싱하기 (jQuery 안쓰고) | hooni | 2017.12.14 | 3145 |