R and Windows Authentication

We have a data server configured in IIS using Windows Authentication (Kerberos). Does anyone know how to access web services (GET and POST) with R authenticating a Windows identifier?

+4
source share
1 answer

In the end, I learned how to achieve this through NTLM. It is actually simple:

require("httr")
GET("http://my-url",authenticate(":", ":", "ntlm")) 
+6
source

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


All Articles