Method: Net::HTTP::NTLM::Credentials#ntlm_auth_params

Defined in:
lib/net/http/ntlm/credentials.rb

#ntlm_auth_paramsHash

Returns the NTLM credentials as a hash

Returns:

  • (Hash)

    Hash with user, domain, password



24
25
26
27
28
29
30
# File 'lib/net/http/ntlm/credentials.rb', line 24

def ntlm_auth_params
  {
    user: ntlm_auth_user,
    domain: ntlm_auth_domain,
    password: ntlm_auth_password
  }
end