Flask-Login provides user session management for the python web framework Flask.

learn more… | top users | synonyms

2
votes
1answer
36 views

Flask-login with static user always yielding 401- Unauthorized

I am trying to build a super simple web app for my own use. I'll be the only user, so I don't feel the need to involve a database for user management. I'm trying to use flask-login, but even though ...
0
votes
1answer
31 views

Python : Flask : Catch All Url for login_required

I want the user to not be able to fetch any assets if they aren't logged in. Can any one tell me why the below doesn't work for : http://domain-name:5000/static/index.html. The user gets served ...
1
vote
3answers
44 views

flask-login not sure how to make it work using sqlite3

So far I made my user object and my login function, but I don't understand the user_loader part at all. I am very confused, but here is my code, please point me in the right direction. ...
2
votes
2answers
63 views

flask unit test: send cookies after modifying the session

I'm writing some unit tests for my flask application and I need to simulate a request from a logged in user (I'm using flask login). I learned here that to do this I need to modify the session and ...
0
votes
1answer
59 views

flask-login can not be used in Blueprint object?

I have a question regarding flask-login and blueprint. admin.py admin = Blueprint('admin', __name__) login_manager = LoginManager() login_manager.setup_app(admin) @login_manager.user_loader def ...
1
vote
1answer
67 views

flask unit test: how to test request from logged in user

I'm writing some unit tests for my Flask web application and I'm trying to test the differences in the response between a request made by an anonymous user and a logged in user. I'm using the ...
0
votes
0answers
77 views

python flask-login: current_user keep anonymous

I'm using flask-login and this problem occur. The log-in function run as following: @api.route('/login', methods=['POST']) def login(): if current_user.is_authenticated(): return ...
1
vote
2answers
104 views

Implementing Flask-Login with multiple User Classes

I am writing an app that has multiple classes that function as Users (for example, a School Account and a Staff account). I'm trying to use Flask-Login to make this easy but I'm not quite sure how to ...
0
votes
2answers
53 views

how to access form data using flask?

My login endpoint looks like @app.route('/login/', methods=['GET', 'POST']) def login(): if request.method == 'POST': print request.form # debug line, see data printed below user ...
0
votes
2answers
55 views

flask - saving extra field after using populate_obj

Hi I have a small Flask app which uses the populate.obj methos for saving form data to an object. models.py: class User(db.DynamicDocument): username = db.StringField(unique=True) email = ...
0
votes
1answer
304 views

Flask - How to get Session ID

Am doing a project with Flask, Gevent and web socket using flask development server environment. I used flask_login. Here how can get i get the Unique Session ID for each connection? I want to store ...
1
vote
1answer
99 views

iOS App Authentication Without UIWebView

Is there a way to authenticate a user without a webview from a Flask(Python) backend? This is my backend login code: @app.route('/login/', methods=['POST']) def login(): params = ...
-3
votes
1answer
65 views

Show That User Is Logged Into iOS app

The login works from the backend and it goes to the home screen after login on iOS. But how do I do guarantee that the user is actually being logged in? For example, I have a Label that I would like ...
2
votes
2answers
313 views

Flask login mechanisim to authenticate per token my calls

Hi I was looking at flask-login at handles the session login nicely, this work good for templating and views where I have access to the session. Nevertheless I have been trying to know if there is a ...
0
votes
1answer
83 views

SQLAlchemy + PostgreSQL quoted table name for User, with Flask-Login

Consider the following declarative User model in SQLAlchemy: class User(Base): id = Column(Integer, primary_key=True) username = Column(String(50), unique=True) email = ...
0
votes
0answers
153 views

Flask-login with Apache virtualhost redirect error?

I have a flask application that requires login authentication using flask-login to do the session handling. The application is using VirtualHost in apache, and the root url is /myapp for instance. ...
3
votes
1answer
146 views

Url in browser not updated after call of redirect( url_for('xxx' )) in Flask with jQuery mobile

I have a very simple python program using Flask shown below. It handles a login with a popup and logout. The problem is that the url in the browser is not updated by the redirect(url_for()) call. ...
4
votes
1answer
344 views

flask-login: Chrome ignoring cookie expiration?

I've got the authentication working with flask-login, but it seems like no matter what I use for the cookie duration in flask, the session is still authenticated. Am I setting the config variables ...
1
vote
2answers
152 views

Token remember me for flask-login saved in the database?

So usually in large websites I work with, you want to save some session information to the database, so that cookies can't be easily duplicated. Using flask-login there is a way to use token_loader, ...
2
votes
1answer
2k views

How to use g.user global in flask

As I understand the g variable in Flask, it should provide me with a global place to stash data like holding the current user after login. Is this correct? I would like my navigation to display my ...
2
votes
0answers
259 views

Flask-Login and Heroku issues

I have a sample web application (flask with flask-login running on heroku) at this URL: http://twittaclone.herokuapp.com. When I run it on my localhost the login functionality works fine. When I push ...
1
vote
2answers
168 views

flask-login session gets destroyed on every apache restart

I am using flask-login https://github.com/maxcountryman/flask-login and the field remember in login_user does not seem to work. The session gets destroyed after every restart of the apache ..ideally ...
1
vote
2answers
550 views

Flask-login and LDAP

I'm developing a webapp with the flask framework as a backend and I need to provide authentication. Since this is an in-house app to be used on our local domain I have chosen to authenticate user ...
1
vote
3answers
507 views

How to manually install Flask extensions?

I have a Flask project which I've put the flask module (version 0.9) directly beside my app.py file. I've done this so that I can bundle everything into a version control repository that won't require ...