Skip to content

Token Based Authentication (Django)

Nikki Jack edited this page Mar 13, 2018 · 2 revisions

JSON web token(JWT) based authentication in Django <-- contains a helpful chart to understand the flow of authentication

How to implement Token Authentication in Django

The front end requests to API should include the token in their HTTP headers:

Authorization: Token YWxhZGRpbjpvcGVuc2VzYW1l

More about Authorization in HTTP headers

Clone this wiki locally