Can Client Client Authenticate NTLM?
In the documentation for authentication types, I did not see any parameters:
require 'rest_client'
resource = RestClient::Resource.new 'http://website', :auth_type => 'ntlm', :user => 'USERNAME', :password => 'PASSWORD'
results = resource.get
:auth_type => 'ntlm' not working and I could not find anything in the documentation or IRC room.
source
share