Authlogic 与 http_basic_authenticate_with 的兼容性

发布于 2024-12-01 22:52:36 字数 496 浏览 1 评论 0原文

我的 Rails 3.1 应用程序使用 authlogic。我刚刚添加了 http_basic_authenticate_with 这样我就可以限制对整个网站的访问运行私人测试版,它似乎已经破坏了 authlogic:

class ApplicationController < ActionController::Base
  protect_from_forgery

  http_basic_authenticate_with :name => "frodo", :password => "thering"

使用上面的代码,当我尝试使用 Authlogic 3.0.3 登录时,身份验证失败,没有错误,并重定向我到 user_sessions 新操作。

这是怎么回事,我想两个都用!

my Rails 3.1 application uses authlogic. I just added http_basic_authenticate_with so I can restrict access to the entire site for running a private beta, and it seems to have broken authlogic:

class ApplicationController < ActionController::Base
  protect_from_forgery

  http_basic_authenticate_with :name => "frodo", :password => "thering"

With the above code, when I try and login using Authlogic 3.0.3, the authentication fails without error, and redirects me to the user_sessions new action.

What's going on, I would like to use both!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文