User authentication Django

dooh kim·2020년 9월 4일
0

django-model-document

목록 보기
7/7

User authentication in Django

Overview

The Django authentication system handles both authentication and authorization. Briefly, authentication verifies a user is who they claim to be, and authorization determines what an authenticated user is allowed to do. Here the term authentication is used to refer to both tasks.

인증이란 ?

  • authentication 과 authorization 두가지로 분류 된다.
    authentication은 요청한 user를 확인한다.
    authorization은 증명된 user 어떤 작업을 할 수 있는지 확인한다.
    ex) superuser와 normaluser가 할 수 있는 것들을 제한한다.

The authentication system in Django aims to be very generic and doesn’t provide some features commonly found in web authentication systems. Solutions for some of these common problems have been implemented in third-party packages:

third-party 이용해야함

Using the Django authentication system

https://docs.djangoproject.com/en/3.1/topics/auth/
https://docs.djangoproject.com/en/3.1/topics/auth/default/

profile
testify to the light

0개의 댓글