instance method
authenticate_with_http_digest
Ruby on Rails 4.2.9
Since v2.3.18Signature
authenticate_with_http_digest(realm = "Application", &password_procedure)
Authenticate with HTTP Digest, returns true or false
Parameters
-
realmopt = "Application" -
password_procedureblock
Source
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 183
def authenticate_with_http_digest(realm = "Application", &password_procedure)
HttpAuthentication::Digest.authenticate(request, realm, &password_procedure)
end
Defined in actionpack/lib/action_controller/metal/http_authentication.rb line 183
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::HttpAuthentication::Digest::ControllerMethods