운영 원리 : Authentication & Permission 제 3자를 비롯한 모든 사용자에게 동일한 권한을 주는 경우는 극히 드물다. Authentication 서비스를 이용하는 데에 있어 내가 어느 정도의 권한이 있음을 알려주는(요청하는) 과정 Authentication - Django REST framework www.django-rest-framework.org BasicAuthentication HTTP 자체 기본인증에 기반한 인증방식 HTTP 제어 헤더로 넘긴 ID, PW를 base64 encoding TokenAuthentication BasicAuthentication은 보안에 취약하다는 단점 SessionAuthentication은 외부 서비스에서 사용할 수 없다는 단점을 가진 한계로..