Skip to main content

Simple Python oAuth Login

Project description

python-socialite

Codacy Badge Codacy Badge

The easy way to retrieve OAuth 2.0 Tokens from any provider

Simple and convenient way for fetching OAuth 2.0 tokens from any provider. Out of the box support for Facebook, Google, GitHub, Microsoft, Bitbucket and more coming... Inspired by Laravel Socialite

This package handles all required boilerplate code for implementing OAuth based social authentication in Python and allows you to integrate OAuth login easily in any app built with Python irrespective of your python framework or platform.

Features

  • Supports multiple common providers
  • Supports any oAuth 2 compliant providers (You can provide a custom driver)
  • Straighforward unopinionated authentication
  • Can be implemented in any python framework

Out of the box OAuth 2.0 Social Login Providers

  • Login with Facebook
  • Login with Google
  • Login with Microfost
  • Login with Github
  • Login with Bitbucket
  • Any custom OAuth 2.0 driver

Usage

Installation

pip install python-socialite

Generate redirect uri

from python_socialite import OAuthProvider

config = {
    "google": {
        "client_id": "",
        "client_secret": "",
        "redirect_url": ""
    },
    "microsoft": {
        "client_id": "",
        "client_secret": "",
        "redirect_url": "",
        "tenant": "common",
        "scopes": ["email", "user"],
    }
}

# Authorize Google
provider = OAuthProvider("google", config)
redirect_url = provider.get_auth_url()

# Authorize Microsoft
provider = OAuthProvider("microsoft", config)
redirect_url = provider.get_auth_url()

# redirect user to the redirect_url using your frameworks supported redirect

Retrieving Access Token and User

code = "" # OAuth provider will redirect back to your redirect_url with a code in the url
provider = OAuthProvider("google", config)

token = provider.get_token(code)
user = provider.get_user(token["access_token"])

This package does not provide opinion on how you use the returned token or user profile. Add that to your application's business logic. Examples include hooking up to your authentication logic, fetching data associated with the returned access token e.t.c

Token Template

NB: Token attributes might vary between providers. Here's a sample returned by Google oAuth

{
   "access_token": "ya29.***",
   "expires_in": 3599,
   "scope": "https://www.googleapis.com/auth/userinfo.profile openid",
   "token_type": "Bearer",
   "id_token": "***jwt***"
}

User Template

user = {
    "id": "",
    "name": "",
    "email": "",
    "avatar": "",
    "raw": "",
    "provider": ""
}

The raw attribute contains all user data as returned by the oAuth provider. Fields in this attribute can be different across different oAuth providers

Requesting Scopes

By default the following scopes are requested

openid, email, profile

You can override requested scopes by adding them to the provider config or using set_scopes method

provider = OAuthProvider("google", config)
auth_url = provider.set_scopes(["openid", "email", "profile"]).get_auth_url()

NB: If no scopes are set in the config or in code the default scopes will be used

Config Options

The config must be a dict containing keys of any of the supported providers

# each provider key must have client_id, client_secret and redirect_url. It's advised to ensure your client_secret is properly secured

config = {
    "google": {
        "client_id": "",
        "client_secret": "",
        "redirect_url": "",
        "scopes": [] # optional
    },
    "facebook": {},
    "github": {},
    "microsoft": {},
}

Points to note

  • Facebook now requires an access token to load user profile picture. If token is not supplied a placeholder will be returned.
  • Github does not always return users emails depending on user's privacy settings. In that case an @users.noreply.github.com email will be returned.
  • Microsoft does not return a picture in the users profile. You can use the returned access token to fetch one from Microsoft Open Graph
  • Support for adding a custom driver to any OAuth provider of your choice is planned. If you urgently need this open an issue
  • The Bitbucket driver will make two calls in order to fetch the user's email addresses
  • The Bitbucket driver does not fetch the user's profile pic

Building custom OAuth 2.0 login driver in python

You can build your own custom OAuth 2.0 driver for any of your preferred services by extending AbstractDriver

TIP: copy code from one of the other drivers on the src directory and modify where necessary

from python_socialite.drivers.abstract_driver import AbstractDriver


class AcmeProvider(AbstractDriver):
    def __init__(self, config):
        """Initialize Acme provider."""
        super().__init__(config)
        self.scopes = config.get("scopes", ["account", "email"])

    @staticmethod
    def provider_name():
        return "acme" # config key

Have a look at the exiting drivers for methods that you must implment

Calling your custom driver

Create your config

config = {
    "acme": {
        "client_id": "xxxxxxxxxxxxxxxx",
        "client_secret": "xxxxxxxxxxxx",
        "redirect_url": "http://localhost"
    },
}

provider = OAuthProvider(AcmeProvider, config)

NB: Call all other methods as ussual

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

python_socialite-1.1.1.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

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

python_socialite-1.1.1-py3-none-any.whl (4.5 kB view details)

Uploaded Python 3

File details

Details for the file python_socialite-1.1.1.tar.gz.

File metadata

  • Download URL: python_socialite-1.1.1.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for python_socialite-1.1.1.tar.gz
Algorithm Hash digest
SHA256 361452a04118b671aa61c150e4b4eb9bb3aece8c9ba1674253a51ca43bf4b16f
MD5 6fbb310a6a280ce60b91953642b29c93
BLAKE2b-256 1da38a350acee6761fcee8cbc19f8afe2f83d0ef8bb6f0e6231fe0655cfa95b8

See more details on using hashes here.

File details

Details for the file python_socialite-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: python_socialite-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 4.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for python_socialite-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 84282f2778fe47608c9880fc4537a380c33c7725f3bd0244c2ec400d2471ae3f
MD5 cb49114885356edaf11597aace8defe5
BLAKE2b-256 c420af1901939486b62e9aca707c25eefce8ac5fa0c3405ef998913adad331ba

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