[Django]-Unable to import TokenObtainPairView,TokenRefreshView from JWT

3👍

You imported it from the wrong framework, you need to import it from the rest_framework_simplejwt.views module, not the rest_framework_jwt.views module:

from rest_framework_simplejwt.views import (
    TokenObtainPairView,
    TokenRefreshView,
)

Is there a specific reason why you installed both djangorestframework-jwt and djangorestframework-simplejwt?

Leave a comment