flask-oidc
flask-oidc copied to clipboard
Lack of documentation
Ya'll deprecated and removed so much from later versions and you have no documentation on what to replace with the stuff that was removed. You need to update the readme or something because this is unacceptable!
What did oidc.custom_callback get replaced with? Same with oidc.callback?
Also I get stuck in a redirection loop with this code: `# # Reditected route
@app.route('/oidc/callback')
@app.require_login()
def callback():
if oidc.user_loggedin:
return "User is logged in"
else:
return "User not logged in"
Index route
@app.route('/')
@oidc.require_login
def index():
return "User signed in"`
The docs are a little better now, could you have a look at them and see if you can upgrade?