Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

There is no client authentication. Try adding an appropriate authentication filter



//You should check WebSecurityConfigurerAdapter method like this:

@Override
public void configure(WebSecurity web) throws Exception {
    web.ignoring().antMatchers("/webjars/**", "/oauth/**");
}

//remove "/oauth/**" path. otherwise

//.postAccessToken(Principal principal, @RequestParam Map<String, String> parameters)

//principal will be null.
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #There #client #Try #adding #authentication #filter
ADD COMMENT
Topic
Name
3+8 =