I am using Spring Boot, Spring Security, OAuth2 and JWT to authenticate my application, but I keep getting this nasty error and I don\'t have any idea what is wrong. My
use noop in secret for tests.
@Override public void configure(ClientDetailsServiceConfigurer clients) throws Exception { clients.inMemory() .withClient("angular") .secret("{noop}@ngular0") .scopes("read", "write") .authorizedGrantTypes("password") .accessTokenValiditySeconds(1800); }