JSON Web Token for Django GraphQL
Project description
JSON Web Token authentication for Django GraphQL
Installation
Install last stable version from Pypi:
pip install django-graphql-jwt
Add AuthenticationMiddleware middleware to your MIDDLEWARE settings:
MIDDLEWARE = [
...
'django.contrib.auth.middleware.AuthenticationMiddleware',
...
]
Add JSONWebTokenMiddleware middleware to your GRAPHENE settings:
GRAPHENE = {
'SCHEMA': 'mysite.myschema.schema',
'MIDDLEWARE': [
'graphql_jwt.middleware.JSONWebTokenMiddleware',
],
}
Add JSONWebTokenBackend backend to your AUTHENTICATION_BACKENDS:
AUTHENTICATION_BACKENDS = [
'graphql_jwt.backends.JSONWebTokenBackend',
'django.contrib.auth.backends.ModelBackend',
]
Schema
Add django-graphql-jwt mutations to the root schema:
import graphene
import graphql_jwt
class Mutation(graphene.ObjectType):
token_auth = graphql_jwt.ObtainJSONWebToken.Field()
verify_token = graphql_jwt.Verify.Field()
refresh_token = graphql_jwt.Refresh.Field()
schema = graphene.Schema(mutation=Mutation)
Documentation
Fantastic documentation is available at https://django-graphql-jwt.domake.io.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-graphql-jwt-0.2.1.tar.gz
(14.7 kB
view details)
File details
Details for the file django-graphql-jwt-0.2.1.tar.gz.
File metadata
- Download URL: django-graphql-jwt-0.2.1.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dcf9dd4990098e289d76ab4220edbf436a2e26dc6af1d4a526ac699ad93bf14
|
|
| MD5 |
26137ba7689d2e267ae7233fc2173f5b
|
|
| BLAKE2b-256 |
cc1ddf78284dc2e483e2ceffcf499988785f05cdbc037f84d33d991e112e9949
|