Skip to main content

Simple token based authentication for Django

Project description

django-token

Simple token based authentication for Django.

This draws inspiration from the Django Rest Framework token based authentication scheme but allows you to use it without using Django Rest Framework.

Installing

Install from pip

sudo pip install django_token

Add the middleware to your MIDDLEWARE_CLASSES

MIDDLEWARE_CLASSES = (
    # Other middleware
    'django_token.middleware.TokenMiddleware',
 )

Add the authenticaton backend to your AUTHENTICATION_BACKENDS

AUTHENTICATION_BACKENDS = (
    'django.contrib.auth.backends.ModelBackend',
    'django_token.backends.TokenBackend'
)

Creating tokens

You can create tokens for users using whatever workflow you'd like.

from django_token.models import Token

token = Token.objects.create(user=myuser)

If you REALLY want to reset all the tokens in your database, you can use the reset_tokens management command.

python manage.py reset_tokens

This is useful when you've just installed django-token, but is otherwise dangerous :)

Token in headers

The user's token should be passed in on every request in the HTTP authorization header.

Using requests

import requests
response = requests.get(
    "http://myserver.com/api/stuff",
    headers={"Authorization": "token r454f2529f2cd27e1722e67a624b2b18335e6c21"}
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-token-0.1.3.tar.gz (4.5 kB view details)

Uploaded Source

File details

Details for the file django-token-0.1.3.tar.gz.

File metadata

  • Download URL: django-token-0.1.3.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for django-token-0.1.3.tar.gz
Algorithm Hash digest
SHA256 9a4169a03035bd35c8d509cbead15548ccf549fe0c92a9d3924ca0ab4291de21
MD5 bf557e5e6de9487360974eabb83b3158
BLAKE2b-256 e6c9a64a6ae865d235d7df5790cab74fb7ea5bd0a46f95a82f0f985017052563

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page