Skip to main content

REST authentication class to get token from HTTP body

Project description

Provide a Django REST Framework authentication class, to look for token in HTTP request’s body, instead of HTTP header.

This use case is uncommon and may be less secure, but some REST client application doesn’t let customize HTTP header, and hence, user cannot set Authorization header. One such client is Blynk Webhook Widget.

Install

pip3 install drf-body-token

DRF Body Token only supports Python 3.5+.

Usage

Add BodyTokenAuthentication to authentication_classes atrribute of your viewset. Example:

from drf_body_token.authentication import BodyTokenAuthentication

class MyAwesomeViewSet(GenericViewSet):
    authentication_classes = (TokenAuthentication, BodyTokenAuthentication)

You can also add it to REST_FRAMEWORK['DEFAULT_AUTHENTICATION_CLASSES'] settings, to make it available for every viewset.

By default, BodyTokenAuthentication looks for access_token field in request’s body. That body can be, for example:

{
    "name": "Cuckoo",
    "type": "bird",
    "access_token": "Vừng ơi mở ra"
}

If you want it to look for another field, add this to your settings.py file:

DRF_BODY_TOKEN_FIELD = 'your_field'

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

drf-body-token-0.1.0.tar.gz (2.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

drf_body_token-0.1.0-py3-none-any.whl (4.1 kB view details)

Uploaded Python 3

File details

Details for the file drf-body-token-0.1.0.tar.gz.

File metadata

  • Download URL: drf-body-token-0.1.0.tar.gz
  • Upload date:
  • Size: 2.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.10 CPython/3.6.7 Linux/4.18.0-13-generic

File hashes

Hashes for drf-body-token-0.1.0.tar.gz
Algorithm Hash digest
SHA256 14b8ac6d1b43387d8e836aacee8382934218a86ed2b27faf3a8fd5973a9f4809
MD5 7be5960b4bafe342162648b0ce0394b2
BLAKE2b-256 83a53ef696e556870ad31710ded7260e1b97326867a126f9fd1c118fc92c81be

See more details on using hashes here.

File details

Details for the file drf_body_token-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: drf_body_token-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 4.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.10 CPython/3.6.7 Linux/4.18.0-13-generic

File hashes

Hashes for drf_body_token-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 995b84c3b58e81cc152df58d11f51a9d4da8615c3108ebec2533fce9d712ad4c
MD5 f983e9239467d96d37e3169dbca484c6
BLAKE2b-256 e3c588e1b9c8a7ab0cb500f95668d58153654a06d200c53526d35e451d76c3ac

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