Authentication & authorization in django

Authentication & authorization make up the components needed to verify that a certain user has access to the API and what they can do with it.


Authentication

This usually involves requiring credentials, such as an API key or username/password.


Authorization

This usually involves checking permissions, but is open to other implementations.

No comments:

Post a Comment