3👍
You imported it from the wrong framework, you need to import it from the rest_framework_simplejwt.views
module, not the module:rest_framework_jwt.views
from rest_framework_simplejwt.views import (
TokenObtainPairView,
TokenRefreshView,
)
Is there a specific reason why you installed both djangorestframework-jwt
and djangorestframework-simplejwt
?
Source:stackexchange.com