I have a Springboot server running, and I am using Spring boot security to force authentication against an Active Directory LDAP server. So anytime an endpoint in this web server is called, it forces a username/password to be put in.
I’ve played around with the Authorization options available in Postman, but I can not find any that will perform the steps necessary to get me past the authentication. I always get the HTML response of the login page.
How are you configuring authentication on the HTTP side? LDAP is going to be used as the user credentials system of record, but how that gets presented via HTTP is up to you. For APIs, I believe you can configure your app to use HTTP Basic Auth. In which case, that’s what you’d use in Postman, as well.