Flask user authentication

后端 未结 4 1758
渐次进展
渐次进展 2020-12-07 18:40

I have an application that will use flask and mongodb; I will probably host it on rackspace.

I need to understand how flask authenticating works. I have not found mu

4条回答
  •  失恋的感觉
    2020-12-07 19:10

    I don't think that flask has any authentication built-in, only support for tracking sessions.

    Here are some snippets for basic HTTP authentication and authentication with some third-party providers. Otherwise you will need to roll your own or use a framework that has this baked in (like Django)

    Here is a discussion thread on this topic with a useful link

提交回复
热议问题