之间有什么http_basic_authenticate_with和authenticate_or_request_with_http_basic区别?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了之间有什么http_basic_authenticate_with和authenticate_or_request_with_http_basic区别?相关的知识,希望对你有一定的参考价值。
是什么区别
http_basic_authenticate_with()
和
authenticate_or_request_with_http_basic()
方法?
感谢您的完整的解释。
答案
从我可以从docs了解,http_basic_authenticate_with
作为它接受一个名称和密码,如前过滤器
http_basic_authenticate_with :name => "dhh", :password => "secret", :except => :index
而authenticate_or_request_with_http_basic接受块允许你插入一些代码,以确定他们是否应该被验证(documentation)。例如。
before_filter :authenticate
def authenticate
authenticate_or_request_with_http_basic('Administration') do |username, password|
ActiveSupport::SecurityUtils.secure_compare(username, "admin") &&
ActiveSupport::SecurityUtils.secure_compare(password, "password")
end
end
以上是关于之间有什么http_basic_authenticate_with和authenticate_or_request_with_http_basic区别?的主要内容,如果未能解决你的问题,请参考以下文章
什么时候应该使用 GET 或 POST 方法?他们之间有什么区别?