Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-graphene-authentication

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-graphene-authentication

A variant of djhango-graphql-jwt that can work with federations

  • 1.0.87
  • PyPI
  • Socket score

Maintainers
1

Introduction

Customizable backend that uses graphql to authenticate users. Abstraction of a graphql authentication mechanism. This is an modification of django-graphql-jwt\ : I drop some functionalities that I did not care and add capabilities that I needed.

Capabilities dropped:

  • cookies;

Capabilities added:

  • custom names and exceptions for authentication graphql mutrations/queries (needed for federations);
  • ability to customize authentication mechanism;
  • ability to work with graphene-federations when there are multiple authentication mechanisms;
  • ability to be easily extended;

Motivation

I needed to work with graphene federations wehere there werre multiple graphqlk mutations with names like "login", "me", "refresdh_tokens" and so on. django-graphql-jwt was more an hindrance than anything else since I need to authenticate via a token rather tha username and password. In the end I ported the feature I needed from django-graphql-jwt and created this variant.

This apps does not rely on its oiwn authentication mechanism, but just relay all the information it knows about the graphql request to the auithentication backend. In this way you are in charge to perform authentication.

Still, the package provides some standard authentication mechanism you can use.

Installation

.. code-block::

pip install django-graphql-apitoken

Configuration

You need to add this app to the INSTALLED_APPS:

.. code-block::

INSTALLED_APPS += "django_graphql_apitoken"

The second step is to create the authentication classes that graphene needs to be aware of. Create a new file in your project root and add the following:

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc