One of our REST API's is secured using Windows Authentication (NTLM). I have configured the ldap-auth plugin from Kong website. The plugin was added using below POST command:curl -X POST http://apis.mycompany.com:8001/apis/UserImage/plugins --data "name=ldap-auth" --data "config.hide_credentials=true" --data "config.ldap_host=dc01.mycompany.com" --data "config.ldap_port=398" --data "config.base_dn=dc=mycompany,dc=com" --data "config.attribute=cn" --data "config.cache_ttl=60" --data "config.verify_ldap_host=true"I am trying to pass the user on a domain along with this credentials using the GET command:
curl -v 'http://apis.mycompany.com:8000/UserImage?ldapid=username' --header 'Authorization: LDAP dXNlcm5hbWU6cGFzc3dvcmQ='
username