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?
Connecting Through Windows Authentication This means that the user identity is confirmed by Windows. SQL Server does not ask for the password, and does not perform the identity validation. Windows Authentication is the default authentication mode, and is much more secure than SQL Server Authentication.
Yes, there is a GSSAPI plugin thatt can authenticate in Windows AD with Kerberos. It can also authenticate on a standalone computer. See Authentication Plugin - GSSAPI.
Windows authentication (formerly named NTLM, and also referred to as Windows NT Challenge/Response authentication) is a secure form of authentication because the user name and password are hashed before being sent across the network.
Windows authentication means the account resides in Active Directory for the Domain.
Eventually, I found out how to achieve this via NTLM. It is actually simple:
require("httr")
GET("http://my-url",authenticate(":", ":", "ntlm"))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With