Всем привет!
у меня стоит Spring Security - basic auth
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth
.inMemoryAuthentication()
.withUser(adminLogin).password(passwordEncoder().encode(adminPassword)).roles("ADMIN")
.and()
.withUser(userLogin).password(passwordEncoder().encode(userPassword)).roles("USER");
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/TEST-qr/**").hasRole("ADMIN")
.antMatchers("/TEST-qr/update-info").hasRole("ADMIN")
.antMatchers("/TEST-qr/").hasAnyRole("ADMIN", "USER")
.anyRequest().authenticated()
.and()
.formLogin();
}
при попытке сделать запрос с аутентификацией в Postman выдает html тэги, в чем может быть проблема: