Iām making a request in postman to an api that uses ntlm authentication, but postman gives up after it receives the initial 401. It never attempts to send any credentials to the server.
{āMessageā:āAuthorization has been denied for this request.ā}
ā¦ and thatās it. Even though NTLM authentication is selected and Iāve entered my credentials, postman doesnāt make any attempt to send them. The url works fine in chrome, and I can see itās successfully going through the ntlm authentication process after the initial 401.
You can open the Postman console and then send the request having NTLM auth. There should be 3 requests logged in the console. Switch to the raw mode then copy everything and post it here
It only makes this initial request and doesnāt attempt to respond to the serverās request for NTLM auth. However if I make the same request using a c# app and monitor in fiddler, i see it authenticating successfully using NTLM over 3 requests, so the issue seems unique to postman.
Actually nevermind, i just noticed that the ādisable retrying the requestā flag was checked. It works after disabling this, as long as NTLM is the only www-authenticate value