REST API

Posted by Seongkyun Yu on 2020-04-06
Estimated Reading Time 1 Minutes
Words 86 In Total
Viewed Times

1. REST API란

자원을 이름(자원의 표현)으로 구분하여 해당 자원의 상태(정보)를 주고 받는 모든 것을 REST라고 한다.

REST API는 REST 기반으로 서비스 API를 구현한 것.


2. REST API 중심 규칙

  1. URI는 정보의 자원을 표현해야 한다.

  2. 자원에 대한 행위는 HTTP Method(GET, POST, PUT, DELETE 등)으로 표현한다.


3. REST API의 구성

구성 요소 내용 표현 방법
Resource 자원 HTTP URI
Verb 자원에 대한 행위 HTTP Method
Representations 자원에 대한 행위의 내용 HTTP MEssage Pay Load

참고자료: poiemaweb.com


If you like this blog or find it useful for you, you are welcome to comment on it. You are also welcome to share this blog, so that more people can participate in it. If the images used in the blog infringe your copyright, please contact the author to delete them. Thank you !