Requests-OAuthlib: OAuth for Humans
Requests-OAuthlib uses the Python Requests and OAuthlib libraries to provide an easy-to-use Python interface for building OAuth1 and OAuth2 clients.
Overview
A simple Flask application which connects to the Github OAuth2 API looks approximately like this:
from requests_oauthlib import OAuth2Session
from flask import Flask, request, redirect, session
from flask.json import jsonify
# This information is obtained upon registration of a new GitHub
client_id = "<your client key>"
client_secret = "<your client secret>"
authorization_base_url = 'https://github.com/login/oauth/authorize'
token_url = 'https://github.com/login/oauth/access_token'
secret_key = "<secret_key for use flask session>"
app = Flask(__name__)
app.config['SECRET_KEY'] = secret_key
@app.route("/login")
def login():
github = OAuth2Session(client_id)
authorization_url, state = github.authorization_url(authorization_base_url)
# State is used to prevent CSRF, keep this for later.
session['oauth_state'] = state
return redirect(authorization_url)
@app.route("/callback")
def callback():
github = OAuth2Session(client_id, state=session['oauth_state'])
token = github.fetch_token(token_url, client_secret=client_secret,
authorization_response=request.url)
return jsonify(github.get('https://api.github.com/user').json())
The above is a truncated example. A full working example is available here: Web App Example of OAuth 2 web application flow
Installation
Requests-OAuthlib can be installed with pip:
$ pip install requests-oauthlib
Getting Started:
- OAuth 1 Workflow
- OAuth 2 Workflow
- Examples
- Bitbucket OAuth 1 Tutorial
- Facebook OAuth 2 Tutorial
- Fitbit OAuth 2 (Mobile Application Flow) Tutorial
- GitHub OAuth 2 Tutorial
- Google OAuth 2 Tutorial
- LinkedIn OAuth 2 Tutorial
- Native or SPA Tutorial with PKCE in Auth0
- Outlook Calendar OAuth 2 Tutorial
- Spotify OAuth 2 Tutorial
- Tumblr OAuth1 Tutorial
- Web App Example of OAuth 2 web application flow
- Refreshing tokens in OAuth 2
- Developer Interface
- Contributing
- Documentation examples