You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the backend uses the django rest framework's TokenAuthentication system for serving and managing user tokens. There are several drawbacks to this systems including but not limited to -
Tokens being limited to one per user which means that users cannot sign into the website and mobile app at the same time.
Tokens are stored without encryption in the database
Currently the backend uses the django rest framework's
TokenAuthentication
system for serving and managing user tokens. There are several drawbacks to this systems including but not limited to -There are a few potential systems that we could use instead:
https://github.com/jazzband/django-rest-knox
https://github.com/jazzband/django-oauth-toolkit?tab=readme-ov-file
https://github.com/pennersr/django-allauth
The text was updated successfully, but these errors were encountered: