Postman and Spring security

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.

Any help or direction would be appreciated.

1 Like

Did you find any solution for this issue ?

I am having the same issue no matter what i do i can’t get past spring security

Hi @skikenaziz and @pavlosan67,

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.

Best,

Kevin