且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Flask-Login显示401而不是重定向到登录视图

更新时间:2023-09-20 22:03:52

You haven't told Flask-Login what view to use to show the login form, so it defaults to a generic 401 error. From the docs: "If the login view is not set, it will abort with a 401 error."

login_manager.login_view = 'login'