Our goal is to get all sorts of private information from a GitHub authenticated login.
Continue readingCategory Archives: Flask
Flask: Session Does Not Persist between BluePrints
Because the session cookies of different blueprints have different paths. Set in configuration:
SESSION_COOKIE_PATH = '/'
And all should share the same session.
When does a session end?
With flask.session
, by default, session ends when browser is entirely exited. Merely closing tabs won’t erase sessions.