'RESTful'에 해당되는 글 1건

  1. 2018.07.04 REST (REpresentational State Transfer)

REST (REpresentational State Transfer) 

HTTP Method
CRUD
POST
Create
Get
Read
PUT
Update
DELETE
Delete

Resource-based architecture
  • 관용적으로 API 이름에 동사 보다는 명사를 사용 함

6가지 제한 조건

  • Unifrom interface
    • HTTP 표준만 따르면 어떤 플랫폼에서도 사용 가능 ( HTTP+JSON / HTTP+XML )
  • Stateless
    • API 서버는 상태 정보를 저장 하지 않음
  • Client-server
  • Cacheable
  • Layered system
  • Code on demand


참고 : 

Posted by chobocho