Does the client support NTLM Auth Support Services?

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.

+3
source share
1 answer

The NTLM requirement really narrows what HTTP software you can use because it is so specific to Microsoft.

, "" NTLM Ruby Typhoeus Curl ", Typhoeus rest-client.

+2

Source: https://habr.com/ru/post/1773730/


All Articles