method

http_basic_authenticate_or_request_with

http_basic_authenticate_or_request_with(name:, password:, realm: nil, message: nil)
public

No documentation available.

# File actionpack/lib/action_controller/metal/http_authentication.rb, line 77
        def http_basic_authenticate_or_request_with(name,, password,, realm: nil, message: nil)
          authenticate_or_request_with_http_basic(realm, message) do |given_name, given_password|
            ActiveSupport::SecurityUtils.secure_compare(given_name, name) &
              ActiveSupport::SecurityUtils.secure_compare(given_password, password)
          end
        end