RESTful API
REST는 Representational State Transfer의 약자로서, www와 같은 하이퍼 미디어에서 시스템을 위한 소프트웨어 아키텍쳐 중 하나이다.
REST 서버는 클라이언트가 http프로토콜을 사용해서 서버의 정보에 접근 및 변경을 가능하게 한다.
여기서 정보는 text, xml, json 형식으로 제공된다.
http 메소드
REST 기반 아키텍쳐에서 자주 사용되는 4가지 메소드는 다음과 같다.
1. GET
2. PUT
3. DELETE
4. POST
'개발 > Web Programming' 카테고리의 다른 글
Error: Requires Babel "^7.0.0-0", but was loaded with "6.26.3". If you are sure you have a compatible version of @babel/core (0) | 2020.07.31 |
---|---|
SPA란? (0) | 2020.07.30 |
Refused to apply style from 'css/style.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled. (0) | 2020.07.30 |
[NodeJs] 기본기 1 (0) | 2020.07.30 |
CRA error... (0) | 2020.07.29 |