What is the correct way of using ntlm authentication with RESTClient?

1.9k Views Asked by At

The follow code works fine but AuthPNames and AuthPolicy are marked as depreciated and I cannot find anything on what to replace it with.

import groovyx.net.http.RESTClient

def restClient = new RESTClient(config.server)

restClient.client.credentialsProvider.setCredentials(
   AuthScope.ANY, 
   new NTCredentials(
      config.authUsername, 
      config.authPassword, 
      config.authWorkstation, 
      config.authDomain)
)
restClient.client.params.setParameter(
   AuthPNames.TARGET_AUTH_PREF, 
   [AuthPolicy.NTLM]
)
2

There are 2 best solutions below

4
On BEST ANSWER

You can find it in the docs:

0
On

You can try following code, it worked for me.

import groovyx.net.http.RESTClient

def restClient = new RESTClient(config.server)

restClient.auth.ntlm config.authUsername, config.authPassword, config.authWorkstation, config.authDomain