16

We have a data server set up in IIS using Windows Authentication (Kerberos). Does anyone know how to call web services (GET and POST) from R authenticating against the Windows identity?

Roland Buergi
  • 1,157
  • 9
  • 23

1 Answers1

25

Eventually, I found out how to achieve this via NTLM. It is actually simple:

require("httr")
GET("http://my-url",authenticate(":", ":", "ntlm")) 
Roland Buergi
  • 1,157
  • 9
  • 23