I\'m using Django REST framework JWT Auth for session creation and permissions, the only problem is: when I log in and after the token expires I can\'t continue doing the op
just add this line to your JWT_AUTH in settings.py file:
'JWT_VERIFY_EXPIRATION': False,
it worked for me.