美文网首页
/oauth/check_token 401

/oauth/check_token 401

作者: 小狐记忆 | 来源:发表于2019-05-19 09:09 被阅读0次

检查token的接口无法使用

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

方法一

// AuthorizationServerConfigurerAdapter

    @Override
    public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception {
        //允许表单认证
        oauthServer.allowFormAuthenticationForClients();
        oauthServer.checkTokenAccess("permitAll()");
    }

方法二

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

参考 https://stackoverflow.com/questions/26750999/spring-security-oauth2-check-token-endpoint

相关文章

  • /oauth/check_token 401

    检查token的接口无法使用 此接口没有允许,默认是不允许访问 方法一 方法二 security.oauth2.a...

  • 微服务安全

    OAuth2 白话OAuth2 什么是OAuth Spring Security OAuth2

  • OAuth2基本概念

    OAuth2 基础概念 标签(空格分隔): OAuth2 什么是OAuth2 ? OAuth2.0是OAuth协议...

  • 05 Spring Social开发第三方登陆(未完)

    OAuth协议OAuth协议解决什么问题OAuth协议的角色OAuth协议的运行流程OAuth授权模式小结 Spr...

  • spring security oauth2

    /oauth/authorize:授权端点。 /oauth/token:令牌端点。 /oauth/confirm_...

  • Spring Security Oauth2

    oauth2理解oauth2理解oauth2参考 oauth2流程 基本概念 Resource Owner: 资源...

  • OAuth 2.0

    理解OAuth 2.0OAuth 2.0 的一个简单解释OAuth 2.0 的四种方式OAuth 2.0 授权认证...

  • Spring Security与OAuth2介绍

    OAuth2 初识 OAuth2.0是OAuth协议的延续版本,OAuth是一个关于授权(authorizatio...

  • OAuth2.0

    OAuth2.0 官网简介[https://oauth.net/2/] OAuth 2.0 is the indu...

  • OAuth协议

    Spring Social、Spring Security OAuth2 是基于OAuth协议的。 1、OAuth...

网友评论

      本文标题:/oauth/check_token 401

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