Top "Flask-security" questions

Flask-Security is a Flask extension which adds basic security and authentication features to your Flask apps quickly and easily.

How do you implement token authentication in Flask?

I'm trying to allow users to login to my Flask app using their accounts from a separate web service. I …

python authentication flask flask-security http-token-authentication
How to get current user when implementing Python Flask-Security?

I am using Flask-Security to set up user authentication for my app but I am struggling with getting the email …

python flask flask-security
Testing Flask login and authentication?

I'm developing a Flask application and using Flask-security for user authentication (which in turn uses Flask-login underneath). I have a …

python unit-testing flask flask-login flask-security
How to secure the flask-admin panel with flask-security

I'm looking to secure Web API made using Flask and integrated with flask-admin to provide an admin interface. I searched …

security authentication flask flask-admin flask-security
AttributeError: type object 'User' has no attribute 'query'

I have a large database built and populated with sqlalchemy (the original - not flask-SQLAlachemy). I would like to add …

python sqlalchemy flask-sqlalchemy flask-security
How to encrypt password using Python Flask-Security using bcrypt?

I'm trying to utlise the standard basic example in the docs for Flask-Security and have made it work except for …

python flask flask-security
How to use Flask-Security register view?

Has anyone used Flask-Security extension for authentication? How do I get register view to work? http://packages.python.org/Flask-Security/…

python flask flask-extensions flask-security
Proper way for user authentication with angularjs and flask

I'm currently working my way through Web development with flask. I want to build a webapp with flask as backend …

python angularjs flask authentication flask-security
Flask-Security CSRF token

I have a flask app that serves as REST API backend. I would like to implement token based authentication for …

angularjs flask flask-security
Importing a Flask-security instance into my views module breaks my webapp

I'm writing the sign up/sign in system for a ecommerce site, and using flask-security (http://pythonhosted.org/Flask-Security/) to …

python flask signals flask-security blinker