Professor, não estou conseguindo encontrar o erro na solicitação do token. Na classe SecurityConfigurations já conferi as permissões: protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests() .antMatchers(HttpMethod.GET, "/topicos").permitAll() .antMatchers(HttpMethod.GET, "/topicos/*").permitAll() .antMatchers(HttpMethod.POST, "/auth").permitAll() .anyRequest().authenticated() .and().csrf().disable() .sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS); }