flask-security Questions
1
Solved
I'm trying to allow users to login to my Flask app using their accounts from a separate web service. I can contact the api of this web service and receive a security token. How do I use this token ...
Antione asked 10/9, 2015 at 19:37
1
Solved
Recently I had an issue where a signal I was using from flask-security was not behaving as expected in python 3.3. In looking at the source code for flask-security I noticed that the signal I was i...
Leesaleese asked 8/9, 2015 at 13:44
2
Solved
I'm trying to use the user_registered signal in order to set up default roles for users when they register using flask-security as in the following link: Setting Default Role in Flask Security
In ...
Aldarcy asked 19/6, 2015 at 18:52
1
Solved
We use a central class model for a wide variety of python modules. This model is defined using SQLAlchemy. The classes all inherit from declarative_base.
For example, our model definitions look s...
Timbale asked 1/3, 2015 at 1:28
2
Solved
My goal is to provide a REST API to my web application. Using:
Python 2.7.5
Flask==0.10.1
Flask-Restless==0.13.1
Flask-Security==1.7.3
I need to secure access to my data for both web and REST a...
Dartboard asked 12/6, 2014 at 14:16
2
Solved
I am using Flask-Security to build a web app that has a public REST API. I am trying to figure out how to add user registration and login using REST calls only.
It is fairly easy to create a user u...
Thenar asked 29/5, 2014 at 21:9
2
Solved
After reading here a bit about salting passwords, it seems that it's best to use a unique salt for each user. I'm working on implementing Flask-Security atm, and from the documentation it appears y...
Boardwalk asked 19/9, 2014 at 20:41
1
Solved
I'm using Flask-Security to manage users, and I'm getting reports that users are logged-in successfully as themselves, but randomly when they load a page, it will show them logged as someone comple...
Luciolucita asked 31/10, 2014 at 5:56
1
Solved
I have been churning through the software development recently and have had some success bending celery to my will.
I have used it successfully to send emails, and have just tried to use almost ex...
Enstatite asked 16/10, 2014 at 16:55
2
Solved
I am new to flask, but moderately proficient in python - I have a flask app that uses flask-security for user authentication. I would like to add some additional functionality to the user login pro...
Harald asked 4/8, 2014 at 8:24
2
How do you log a user in and out in Flask using the Flask-Security extension?
I just started using flask-security, and going through the documentation here http://pythonhosted.org/Flask-Security/a...
Galvanic asked 22/10, 2013 at 14:57
1
Is it possible to use Flask-Social and Flask-Security if I only want to use Facebook Login, for example, for user registration and login, i.e. no local registration/login forms?
I looked through t...
Winola asked 1/8, 2013 at 15:43
1
I'm trying to customize my Admin views with Flask and Flask-SuperAdmin, however, the index view and subviews are apparently not using the same is_accessible method:
EDIT: I managed to figure out w...
Afton asked 11/7, 2013 at 0:40
1
Solved
I want to receive the user_registered signal from Flask-Security and have to set up like so:
from flask.ext.security.signals import user_registered
@user_registered.connect_via(app)
def user_regi...
Vigilantism asked 25/2, 2013 at 5:45
2
Can anyone tell if there's a fundamental difference between these 3 extensions or do they all do similar things? I've been reading the docs and there seems to be quite a lot of crossover. I'm...
Ariosto asked 26/6, 2013 at 13:33
2
Solved
I am trying to set a default role when a user registers with my site, currently no roles are set when the user registers.
I have created the roles I need, so I just need to define it somehow. Not ...
Entrammel asked 17/6, 2013 at 11:44
1
Solved
Can someone walk me through what's happening in flask-security's password reset token? The code is here on github:
https://github.com/mattupstate/flask-security/blob/develop/flask_security/recover...
Oraleeoralia asked 16/12, 2012 at 23:23
© 2022 - 2024 — McMap. All rights reserved.