Flask implementation for Microsoft Oauth2 authentication
Project description
Flask Microsoft OAuth2
flask-ms-oauth2 is a Flask implementation of authentication using Microsoft OAuth2 Service. This extension helps to implement authentication solutions based on Microsoft OAuth2 Service. It contains helpful functions and properties to handle oauth2 and token based authentication flows.
Installation
pip install flask-ms-oauth2
Usage
from flask import Flask
from flask import redirect
from flask import url_for
from flask import session
from flask import jsonify
from flask_ms_oauth2 import MSOAuth2Manager
from flask_ms_oauth2 import login_handler
from flask_ms_oauth2 import logout_handler
from flask_ms_oauth2 import callback_handler
app = Flask(__name__)
app.secret_key = "my super secret key"
# Setup the flask-ms-oauth2 extention
app.config['CLIENT_ID'] = "xxxxxxxxxxxxxxxxxxxxxxxxxx"
app.config['CLIENT_SECRET'] = "xxxxxxxxxxxxxxxxxxxxxxxxxx"
app.config['TENANT_ID'] = "xxxxxxxxxxxxxxxxxxxxxxxxxx"
app.config["ERROR_REDIRECT_URI"] = "page500" # Optional
app.config["STATE"] = "mysupersecrethash" # Optional
app.config['REDIRECT_URI'] = "https://yourdomainhere/msoauth2/callback" # Specify this url in Callback URLs section of Appllication client settings within Microsoft OAuth2 Sevice. Post login application will redirect to this URL
app.config['SIGNOUT_URI'] = "https://yourdomainhere/login" # Specify this url in Sign out URLs section of Appllication client settings. Post logout application will redirect to this URL
msoauth2 = MSOAuth2Manager(app)
@app.route('/login', methods=['GET'])
def login():
print("Do the stuff before login to Microsoft Oauth2 Service")
response = redirect(url_for("msoauth2login"))
return response
@app.route('/logout', methods=['GET'])
def logout():
print("Do the stuff before logout from Microsoft Oauth2 Service")
response = redirect(url_for("msoauth2logout"))
return response
# Use @login_handler decorator on Microsoft OAuth2 login route
@app.route('/msoauth2/login', methods=['GET'])
@login_handler
def msoauth2login():
pass
@app.route('/home', methods=['GET'])
def home():
current_user = session["username"]
return jsonify(logged_in_as=current_user), 200
# Use @callback_handler decorator on Microsoft OAuth2 callback route
@app.route('/auth/callback', methods=['GET'])
@callback_handler
def callback():
for key in list(session.keys()):
print(f"Value for {key} is {session[key]}")
response = redirect(url_for("home"))
return response
# Use @logout_handler decorator on Microsoft OAuth2 logout route
@app.route('/msoauth2/logout', methods=['GET'])
@logout_handler
def msoauth2logout():
pass
@app.route('/page500', methods=['GET'])
def page500():
return jsonify(Error="Something went wrong"), 500
if __name__ == '__main__':
app.run(debug=True)
Development Setup
Using pipenv
pipenv install --dev
Using virtualenv
python3 -m venv venv
source venv/bin/activate
pip install .
Contributing
- Fork repo- https://github.com/shrivastava-v-ankit/flask-ms-oauth2.git
- Create your feature branch -
git checkout -b feature/name
- Add Python test (pytest) and coverage report for new/changed feature.
- Commit your changes -
git commit -am "Added name"
- Push to the branch -
git push origin feature/name
- Create a new pull request
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flask-ms-oauth2-1.0.0.tar.gz
(15.6 kB
view details)
Built Distribution
File details
Details for the file flask-ms-oauth2-1.0.0.tar.gz
.
File metadata
- Download URL: flask-ms-oauth2-1.0.0.tar.gz
- Upload date:
- Size: 15.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.28.2 setuptools/50.3.1.post20201107 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78e776c66330fe2d01f89621a40302d25fb3195cdb0e2ef93f13b336a9ec3358 |
|
MD5 | 987a914b9f02ef75be257a86becc0d00 |
|
BLAKE2b-256 | 879f3ba916ece4d1338b3db659b66a1846c34c5020b7f1df573c775cb55b81b1 |
File details
Details for the file flask_ms_oauth2-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: flask_ms_oauth2-1.0.0-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.28.2 setuptools/50.3.1.post20201107 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0a054a86488f2f2cf528396fb0a9f766b0a5a0f6e1fbe6915dd31221da60372 |
|
MD5 | f9f57d0486b60bb1aaf1753f683d19ed |
|
BLAKE2b-256 | 92930a879fa9b0138caa1c5dcdb8548981572a3f3893e445c32e7562fd057fe6 |