3 upvotes·10.6K views
Replies (2)
Hello, have you looked into the official auth0 / django rest framework tutorial: https://auth0.com/docs/quickstart/backend/django/01-authorization
In the above tutorial, they are using JWT tokens.
1 upvote·78 views
If you want to verify the validity of every auth token through your database, use DRF's internal token. If you want to verify the validity of every auth token through cryptology, use JWT.
Here are more info: https://stackoverflow.com/questions/31600497/django-drf-token-based-authentication-vs-json-web-token/40495728#40495728
1 upvote·126 views