Skip to content

Instantly share code, notes, and snippets.

View LUCIFERsDen26's full-sized avatar
😃

Bhushan Shelar LUCIFERsDen26

😃
View GitHub Profile
@LUCIFERsDen26
LUCIFERsDen26 / app.py
Last active March 12, 2024 10:01 — forked from thomasdarimont/app.py
Simple python example using flask, flask_oidc with keycloak server
import json
import logging
from flask import Flask, g
from flask_oidc import OpenIDConnect
import requests
logging.basicConfig(level=logging.DEBUG)
app = Flask(__name__)