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 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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-loginbe used to achieve this?Thanks
Arthur
All reactions