方法
实例公共方法
http_basic_authenticate_with(name:, password:, realm: nil, **options) 链接
启用 HTTP Basic
身份验证。
有关使用示例,请参见 ActionController::HttpAuthentication::Basic
。
来源:显示 | 在 GitHub 上
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 79 def http_basic_authenticate_with(name:, password:, realm: nil, **options) raise ArgumentError, "Expected name: to be a String, got #{name.class}" unless name.is_a?(String) raise ArgumentError, "Expected password: to be a String, got #{password.class}" unless password.is_a?(String) before_action(options) { http_basic_authenticate_or_request_with name: name, password: password, realm: realm } end