Server/Django issue

[Django] 인증 인가 참고자료

개발자킹콩 2022. 8. 8. 15:59

 

 

 

User Token Authentication

https://www.youtube.com/watch?v=s3jTweZiqfI&t=288s 

 

 

https://velog.io/@killi8n/Dnote-5-1.-Django-권한-설정-및-로그인-회원가입-구현-tmjmep5tcm

 

Dnote 5 - 1. Django - 권한 설정 및 로그인 / 회원가입 구현

일단 권한을 설정 해야 하니까, Django로 돌아옵시다. django-rest-knox 라는 패키지를 다운로드 해야합니다. settings.py 이제 기본 권한을 설정했으니, notes 모델에서 owner 필드를 추가해주겠습니다. notes/

velog.io

 

https://devkor.tistory.com/entry/03-Django-Rest-Framework-회원-인증-유저-모델-확장하기

 

03. Django Rest Framework 회원 인증, 유저 모델 확장하기

들어가며 # (수정) 추후 설명하는 그림을 첨부할 예정입니다. # 공부하며 쓰는 글이라 제일 좋은 방법이 아닐 것이며, 때로 부정확한 정보가 있을 수 있습니다. 지난 시간에는 DRF에서 가장 중요한

devkor.tistory.com

 

https://veneziar.tistory.com/70

 

django login knox (user extention one to one)

settings.py from datetime import timedelta INSTALLED_APPS = [ ... 'knox', ] REST_KNOX = { 'SECURE_HASH_ALGORITHM': 'cryptography.hazmat.primitives.hashes.SHA512', 'AUTH_TOKEN_CHARACTER_LENGTH': 64,..

veneziar.tistory.com

 

https://breakout-theworld.tistory.com/47

 

장고 기본 인증 시스템으로 로그인 구현하기(Django's built in Authentication System)

인증(Authentication) 컴퓨터공학에서 인증이란 무엇일까? 프로그램에 디바이스(Device)나 사용자(User)의 ID를 식별(verifying)하는 기능으로 쉽게 말해 로그인 이다. 인증은 디바이스마다 어플리케이션마

breakout-theworld.tistory.com

 

https://yonghyunlee.gitlab.io/python/user-extend/

 

django login 유저 확장 방법 - 김땡땡's blog

장고의 auth 기능은 User 객체를 제공한다. 우리는 기본 default로 이 User 객체로 여러 인증을 구현할 수 있다. User model User model의 기본적으로 있는 여러 필드들이 있다. username 필수사항이다. 150자 이

yonghyunlee.gitlab.io

 

 

 

 

 

'Server > Django issue' 카테고리의 다른 글

[Django] TextChoices  (0) 2022.11.24
[Django] AWS S3 연동  (0) 2022.09.14
[Django] Custom User  (0) 2022.08.05
[Django] MySQL 테이블 전체 삭제  (0) 2022.08.05
[Django] User model 확장  (0) 2022.08.04