[RestAPI] DEVIEW 2017 "그런 REST API로 괜찮은가" 정리
·
BE
https://youtu.be/RP_f5dMoHFc?si=Mt_2XWq2Hz04IeL6 rest api의 조건아키텍처 스타일이면서 아키텍처 그 자체code-on-demand : 서버에서 클라이언트로 코드를 보내면 코드가 실행가능해야 한다uniform-interface (잘 만족하지 못하고 있음)identification of resources : 리소스가 uri로 식별되면 된다.manipulation of resources through representations : 리소스를 crud할 때 message에 표현을 담아 전송해야 한다.self-descriptive messages (잘 만족하지 못하고 있음) : 메세지는 스스로를 설명해야 한다.response에 content-type이 잇어야 함 : 파싱..