instance method
request_http_digest_authentication
Ruby on Rails 3.2.22.5
Since v2.3.18Signature
request_http_digest_authentication(realm = "Application", message = nil)
Render output including the HTTP Digest authentication header
Parameters
-
realmopt = "Application" -
messageopt = nil
Source
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 177
def request_http_digest_authentication(realm = "Application", message = nil)
HttpAuthentication::Digest.authentication_request(self, realm, message)
end
Defined in actionpack/lib/action_controller/metal/http_authentication.rb line 177
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::HttpAuthentication::Digest::ControllerMethods