Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python /Flask Login with LDAP Auth
#5
Alright, after looking through the source, it looks like the LoginManager doesn't actually manage the session itself, it only adds some things on top of it. So you still need to let Flask know what sort of session management you're using.

https://github.com/pallets/flask/blob/ma...ns.py#L124 Wrote:If :meth:open_session returns None Flask will call into
:meth:make_null_session to create a session that acts as replacement
if the session support cannot work because some requirement is not
fulfilled. The default :class:NullSession class that is created
will complain that the secret key was not set.

To replace the session interface on an application all you have to do
is to assign :attr:flask.Flask.session_interface::
app = Flask(__name__)
app.session_interface = MySessionInterface()
That's the error you're getting, which leads me to believe this is an easy fix.

After you create your app, but before running it, try adding this line, and let's see if that fixes it (or at least gives a different error): app.session_interface = session.SecureCookieSessionInterface()
Reply


Messages In This Thread
Python /Flask Login with LDAP Auth - by pythonnubie - Apr-13-2018, 04:04 PM
RE: Python /Flask Login with LDAP Auth - by nilamo - Apr-13-2018, 09:01 PM
RE: Python /Flask Login with LDAP Auth - by nilamo - Apr-16-2018, 03:14 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Flask login help dangermaus33 0 1,609 Dec-07-2020, 04:06 PM
Last Post: dangermaus33
  python 3.7 on windows using flask and flask-sqlalchemy. Alpy 2 4,015 Aug-12-2020, 07:24 PM
Last Post: Alpy
  Python Webscraping with a Login Website warriordazza 0 2,609 Jun-07-2020, 07:04 AM
Last Post: warriordazza
  [Flask]After login page is not redirecting me to dashboard shockwave 0 2,713 May-07-2020, 05:22 PM
Last Post: shockwave
  How to perform a successful login(signin) through Requests in Python Kalet 1 2,352 Apr-24-2020, 01:44 AM
Last Post: Larz60+
  Google calendar pthon flask auth Kireta 0 2,102 Sep-16-2019, 04:50 PM
Last Post: Kireta
  Python-selenium script for automated web-login does not work hectorKJ 2 4,084 Sep-10-2019, 01:29 PM
Last Post: buran
  HOWTO? Login DSL Modem with Python Requests: need Click "Apply" Button Webtest 4 8,505 Aug-20-2019, 04:03 PM
Last Post: johnmina
  Flask tutorial errors in jinja, auth undefined Ecniv 2 2,528 May-03-2019, 02:04 PM
Last Post: Ecniv
  Problem enabling http auth in a route nikos 2 2,818 Mar-02-2019, 01:13 PM
Last Post: nikos

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020