django, djangorestframework 가 설치되어있는 상태에서 진행해야 함 ⭐️ simplejwt pip install djangorestframework-simplejwt # settings.py # 앱 추가 INSTALLED_APPS = [ ... 'rest_framework_simplejwt', ... ] # REST_FRAMEWORK 'DEFAULT_AUTHENTICATION_CLASSES': [ ... # JWT 인증 방식 추가하기 'rest_framework_simplejwt.authentication.JWTAuthentication', ], # user/urls.py from rest_framework_simplejwt.views import ( TokenObtainPairVie..