Spring Oauth2.0-认证服务器,/oauth/che
2020-03-03 本文已影响0人
胡浩8880
检查token的接口无法使用
此接口没有允许,默认是不允许访问
方法一
// AuthorizationServerConfigurerAdapter
@Override
public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception{
//允许表单认证
oauthServer.allowFormAuthenticationForClients();
oauthServer.checkTokenAccess("permitAll()");
}
方法二
security.oauth2.authorization.check-token-access=permitAll()