Skip to content

Use this simple module to easily enable authorization in your Django application via Twitch API

License

Notifications You must be signed in to change notification settings

ALikhachev/django-simpletwitchauth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Twitch auth

Wanna enable your awesome Django application to register and authenticate user using Twitch profiles?
This application was created especially for your needs

Features

  • Easy to use
  • Ready to Twitch channel name changes
  • Username cases are synchronized to Twitch display_name
  • User emails are synchronized to Twitch

Installation

Ensure that Django ‘sites’ framework is enabled.

Python package Downloads

pip install django-simpletwitchauth

settings.py:

Add twitch_auth to INSTALLED_APPS

Add twitch_auth.backends.OAuth2Backend to AUTHENTICATION_BACKENDS

Set Twitch application settings

Example using django-environ:

env = environ.Env()

TWITCH_AUTH_CLIENT_ID = env('TWITCH_CLIENT_ID', default='some_client_id')
TWITCH_AUTH_CLIENT_SECRET = env('TWITCH_CLIENT_SECRET', default='some_client_secret')

All available settings:

TWITCH_AUTH_SCOPE

Defines OAuth2 token scope

Defaults to user_read

TWITCH_AUTH_PROTOCOL

Defines protocol that is used to build full authentication callback URI

Defaults to http://

TWITCH_AUTH_CLIENT_ID

Defines Twitch application client ID

TWITCH_AUTH_CLIENT_SECRET

Defines Twitch application client secret

TWITCH_AUTH_REDIRECT_URI

Defines default redirect URI after successful authentication

Defaults to /

Usage

  • Run migrations to create database tables for entities.
  • Add somewhere in your templates link to url login_twitch

About

Use this simple module to easily enable authorization in your Django application via Twitch API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages