Methods
- A
- R
Instance Public methods
authenticate_or_request_with_http_digest(realm = "Application", message = nil, &password_procedure) Link
Authenticate using an HTTP Digest
, or otherwise render an HTTP header requesting the client to send a Digest
.
See ActionController::HttpAuthentication::Digest
for example usage.
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 197 def authenticate_or_request_with_http_digest(realm = "Application", message = nil, &password_procedure) authenticate_with_http_digest(realm, &password_procedure) || request_http_digest_authentication(realm, message) end
authenticate_with_http_digest(realm = "Application", &password_procedure) Link
Authenticate using an HTTP Digest
. Returns true if authentication is successful, false otherwise.