Use an API key model of authentication #741
Unanswered
artgoldberg
asked this question in
Q&A
Replies: 1 comment
-
Flask-Login doesn't dictate how your authentication scheme works. You validate credentials however you need to, then call |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The system I'm building requires an API key authentication model.
This means that a login succeeds if and only if the password (which we call an API key) is contained in a set of valid API keys.
We can ask users to provide an id (email), but it's not used for authentication.
How should
flask-login
be used to achieve this?Thanks
Arthur
Beta Was this translation helpful? Give feedback.
All reactions