美文网首页
Spring Oauth2.0-认证服务器,/oauth/che

Spring Oauth2.0-认证服务器,/oauth/che

作者: 胡浩8880 | 来源:发表于2020-03-03 16:25 被阅读0次

    检查token的接口无法使用

    此接口没有允许,默认是不允许访问

    方法一

    // AuthorizationServerConfigurerAdapter

    @Override

    public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception{

    //允许表单认证

    oauthServer.allowFormAuthenticationForClients();

    oauthServer.checkTokenAccess("permitAll()");

    }

    方法二

    security.oauth2.authorization.check-token-access=permitAll()

    相关文章

      网友评论

          本文标题:Spring Oauth2.0-认证服务器,/oauth/che

          本文链接:https://www.haomeiwen.com/subject/ysosgctx.html