티스토리 뷰
반응형
pip install djangorestframework-simplejwt
settings.py
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.sites',
'myuser.apps.MyuserConfig',
'rest_framework_simplejwt', ## 적어주세요 '_' 주의!!
'blog.apps.BlogConfig'
]
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': (
'rest_framework_simplejwt.authentication.JWTAuthentication',
),
'DEFAULT_PERMISSION_CLASSES': (
'rest_framework.permissions.IsAuthenticatedOrReadOnly',
), # login작업이외에 다른 views에서 토큰을 사용할 때 필요하다.
}
views.py
from django.shortcuts import render
from rest_framework_simplejwt.serializers import TokenObtainPairSerializer
from rest_framework_simplejwt.views import TokenObtainPairView
class MyTokenObtainPairSerializer(TokenObtainPairSerializer):
@classmethod
def get_token(cls, user):
token = super().get_token(user)
token['is_staff']=user.is_staff #확장
token['is_superuser']=user.is_superuser #확장
return token
class MyTokenObtainPairView(TokenObtainPairView):
serializer_class=MyTokenObtainPairSerializer
app 안에 있는 urls.py
from django.urls import path
from .views import MyTokenObtainPairView
urlpatterns=[
path('user/token/',MyTokenObtainPairView.as_view())
]
Github 주소: https://github.com/VIXXPARK/django-remind/blob/main/django-simple-jwt/myuser/views.py
반응형
'파이썬 > 장고' 카테고리의 다른 글
django test response body 가져오기 (0) | 2021.07.09 |
---|---|
Django user 비밀번호 암호화 (0) | 2021.07.06 |
Django kakao OAuth login 구현 (0) | 2021.06.29 |
django nested/foreign key 관계 모델까지 가져오기 (0) | 2021.06.23 |
DRF IMAGE 복수 처리 (0) | 2021.06.22 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- env
- setattr
- thread
- 프로그래머스
- 백준
- Collections
- ubuntu
- DRF
- 자바
- 그래프
- docker
- Linux
- 카카오
- Python
- 알고리즘
- Spring
- django
- postgres
- 파이썬
- Command Line
- headers
- BFS
- 면접
- docker-compose
- Pattern
- Java
- 2021 KAKAO BLIND RECRUITMENT
- PostgreSQL
- Celery
- dockerignore
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함