module HTTPX::Plugins::NTLMAuth::InstanceMethods

  1. lib/httpx/plugins/ntlm_auth.rb

Methods

Public Instance

  1. ntlm_auth

Public Instance methods

ntlm_auth(user, password, domain = nil)
[show source]
   # File lib/httpx/plugins/ntlm_auth.rb
28 def ntlm_auth(user, password, domain = nil)
29   with(ntlm: Authentication::Ntlm.new(user, password, domain: domain))
30 end