Skip to content

pyokagan/pyoauth2client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

pyoauth2client: The intelligent oauth2 client library

oAuth2 is a big mess. pyoauth2client aims to make it easy to use.

Usage (Installed Applications)

Using oauth2client.db

Client Credentials will be read from ~/.config/oauth2.json, which is useful for installed applications.

With requests:

>>> from oauth2client import db
>>> token = db.server("google").basic_flow() 
>>> from oauth2client.requests import OAuth2 
>>> import requests
>>> requests.get("https://www.googleapis.com/oauth2/v1/userinfo", auth = OAuth2(token)).json

Manual

No configuration files will be read. Useful when you want to implement your own configuration mechanism.

With requests:

>>> from oauth2client.google import ClientPasswordCredentials, GoogleOAuth2
>>> cred = ClientPasswordCredentials(id = "381049194886.apps.googleusercontent.com", secret = "msQUzuyt9zB9jyjBYhG7bV4L")
>>> server = GoogleOAuth2(cred)
>>> token = server.basic_flow()
>>> from oauth2client.requests import OAuth2
>>> import requests
>>> requests.get("https://www.googleapis.com/oauth2/v1/userinfo", auth = OAuth2(token)).json

Usage (Web Server)

To be written.

The oauth2.json configuration file

The ~/.config/oauth2.json file contains your client credentials. This file will be read when you load a server with `db.server("SERVERNAME")`:

{
    "github": {
        "client_credentials": {
            "id": "CLIENT ID",
            "secret": "CLIENT SECRET"
            },
        "redirect_uri": "REDIRECT URI (github requires it to be the same as your application settings)"
    },
    "google": {
        "client_credentials": {
            "id": "CLIENT ID",
            "secret": "CLIENT SECRET"
        }
    },
    "facebook": {
        "client_credentials": {
            "id": "CLIENT ID",
            "secret": "CLIENT SECRET"
        }
    }
}

Features

  • Implements workarounds for non-conformnant authorization servers (See oauth2client.facebook for an example)

Authorization Server support

  • Github
  • Facebook
  • Google

Specification Implementation

To be written.

About

The convenient python 3 oAuth 2 client library. This is a git mirror of the bitbucket mercurial repository. Pull requests are IGNORED.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages