recently I began to create a REST API with Django REST Framework. I want to implement an authentication system but I have several doubts (The tutorial provided by the Framework is not so concise).
I'd like that every users that want access to my API need a token. These are my questions:
- Would I need to create a model which keeps the users data? (User, email, token, etc)
- How can I relate each model with each user?