Skip to content

centralized OAuth access to OAuth providers in Django

License

Notifications You must be signed in to change notification settings

weluse/django-oauth-access

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-oauth-access README

This app provides support for:

  • Twitter
  • LinkedIn
  • Yahoo
  • Youtube
  • Facebook (using OAuth 2.0 — it is functional, but needs more work)
  • Likely any OAuth 1.0a compliant site

## Sample settings

Check sample_settings.py for examples of how to store your consumer keys.

## Callback View

On a successful signin with a service provider, you need to provide one / the same view for each provider that looks like this:

# views.py

def oauth_access_success(request, access, token):
access.persist() # stores the token in the database # do other stuff that I'll write about later

About

centralized OAuth access to OAuth providers in Django

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%