SimpleJWT: Re-apply Blacklist Token Migration: “Table ‘token_blacklist_blacklistedtoken’ doesn’t exist”
I have, rather sillily, run “python manage.py migrate” when I added Django SimpleJWT’s token blacklist functionality to my program. This means whenever I try to generate tokens or use any functionality, I run into the error…
How to check a generate code by simply-jwt
I try to verify a code generate by simply-jwt, but the second step when I tried to verify this, it’s become False and I try to understand why
How to implement a mobile_no to be passed inorder to access tokens and not the default username and password
I’m not using password, by default simplejwt requires a default user so it prompts me for username, password and mobile_no – but I only want to user mobile no.
In django DRF using JWT, why does postman properly block access to some views but they are available from my Angular front-end without authentication?
I’m trying to restrict access to some views of my API using Django Rest Framework and simpleJWT https://django-rest-framework-simplejwt.readthedocs.io/
The issue I’m facing is that postman correctly blocks access to my views when I do not provide a valid JWT to my API but my Angular front-end does not and gives access to all the views of my DRF API.