当前位置: 首页 > 知识库问答 >
问题:

Spring Security OAuth2资源服务器始终返回无效令牌

昌博易
2023-03-14

>

  • 访问oauth授权URI以启动OAuth2流:http://localhost:8080/server/oauth/authorize?response_type=code&client_id=client

    重定向到登录页面:http://localhost:8080/server/login

    使用代码参数:http://localhost:8080/client?code=hmjo4k处理审批并重定向到我的配置重定向页

    使用基本身份验证构造GET请求,使用客户端id和secret以及授予类型和代码:http://localhost:8080/server/oauth/token?grant_type=authorization_code&code=hmjo4k

    接收access_token并刷新token对象

    {access_token:“f853bcc5-7801-42d3-9cb8-303fc67b0453”token_type:“barer”refresh_token:“57100377-dea9-4df0-adab-62e33f2a1b49”expires_in:299范围:“读写”}

    尝试使用access_token访问受限资源:http://localhost:8080/server/me?access_token=f853bcc5-7801-42d3-9cb8-303fc67b0453

    接收无效令牌回复

    {error:“invalid_token”error_description:“无效访问令牌:F853BCC5-7801-42D3-9CB8-303FC67B0453”}

    {access_token:“ED104994-899C-4CD9-8860-43D5689A9420”token_type:“barer”refresh_token:“57100377-DEA9-4DF0-ADAB-62E33F2A1B49”expires_in:300作用域:“读写”}

    我真的不确定我做错了什么,但似乎除了访问受限制的uri之外,其他的一切都在工作。下面是我的配置:

    @Configuration
    public class Oauth2ServerConfiguration {
    
        private static final String SERVER_RESOURCE_ID = "oauth2-server";
    
        @Configuration
        @EnableResourceServer
        protected static class ResourceServerConfiguration extends ResourceServerConfigurerAdapter {
    
            @Override
            public void configure(ResourceServerSecurityConfigurer resources) {
                resources.resourceId(SERVER_RESOURCE_ID);
            }
    
            @Override
            public void configure(HttpSecurity http) throws Exception {
                http
                    .sessionManagement()
                        .sessionCreationPolicy(SessionCreationPolicy.IF_REQUIRED)
                    .and().requestMatchers()
                        .antMatchers("/me")
                    .and().authorizeRequests()
                        .antMatchers("/me").access("#oauth2.clientHasRole('ROLE_CLIENT')")
                ;
            }
        }
    
        @Configuration
        @EnableAuthorizationServer
        protected static class AuthotizationServerConfiguration extends AuthorizationServerConfigurerAdapter {
    
            @Autowired
            private ClientDetailsService clientDetailsService;
    
            @Autowired
            @Qualifier("authenticationManagerBean")
            private AuthenticationManager authenticationManager;
    
            @Override
            public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
                clients.inMemory()
                    .withClient("client")
                        .resourceIds(SERVER_RESOURCE_ID)
                        .secret("secret")
                        .authorizedGrantTypes("authorization_code", "refresh_token")
                        .authorities("ROLE_CLIENT")
                        .scopes("read","write")
                        .redirectUris("http://localhost:8080/client")
                        .accessTokenValiditySeconds(300)
                        .autoApprove(true)
                ;
            }
    
            @Bean
            public TokenStore tokenStore() {
                return new InMemoryTokenStore();
            }
    
            @Override
            public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
                endpoints
                    .tokenStore(tokenStore())
                    .userApprovalHandler(userApprovalHandler())
                    .authenticationManager(authenticationManager)
                ;
            }
    
            @Override
            public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception {
                oauthServer.realm("oauth");
            }
    
            @Bean
            public ApprovalStore approvalStore() throws Exception {
                TokenApprovalStore store = new TokenApprovalStore();
                store.setTokenStore(tokenStore());
                return store;
            }
    
            @Bean
            public UserApprovalHandler userApprovalHandler() throws Exception {
                TokenStoreUserApprovalHandler handler = new TokenStoreUserApprovalHandler();
                handler.setRequestFactory(new DefaultOAuth2RequestFactory(clientDetailsService));
                handler.setClientDetailsService(clientDetailsService);
                handler.setTokenStore(tokenStore());
    
                return handler;
            }
        }
    }
    

    是我错过了什么,还是我不正确地对待这件事?如有任何帮助,将不胜感激。

  • 共有1个答案

    祝宏放
    2023-03-14

    问题最终是资源服务器和授权服务器没有获得相同的令牌存储引用。不确定布线是如何不正常工作的,但在configuration类中使用一个固定对象就像一个魅力。最后,我将转移到支持持久性的令牌存储,它可能不会有任何问题。

    感谢@ohadr的回答和帮助!

    最终,我简化了配置,经过了相同的工作流程,结果成功了

    @Configuration
    public class Oauth2ServerConfiguration {
    
        private static final String SERVER_RESOURCE_ID = "oauth2-server";
    
        private static InMemoryTokenStore tokenStore = new InMemoryTokenStore();
    
    
        @Configuration
        @EnableResourceServer
        protected static class ResourceServer extends ResourceServerConfigurerAdapter {
    
            @Override
            public void configure(ResourceServerSecurityConfigurer resources) throws Exception {
                resources.tokenStore(tokenStore).resourceId(SERVER_RESOURCE_ID);
            }
    
            @Override
            public void configure(HttpSecurity http) throws Exception {
                http.requestMatchers().antMatchers("/me").and().authorizeRequests().antMatchers("/me").access("#oauth2.hasScope('read')");
            }
        }
    
        @Configuration
        @EnableAuthorizationServer
        protected static class AuthConfig extends AuthorizationServerConfigurerAdapter {
    
            @Autowired
            private AuthenticationManager authenticationManager;
    
    
            @Override
            public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
                endpoints.authenticationManager(authenticationManager).tokenStore(tokenStore).approvalStoreDisabled();
            }
    
            @Override
            public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
                clients.inMemory()
                    .withClient("client")
                        .authorizedGrantTypes("authorization_code","refresh_token")
                        .authorities("ROLE_CLIENT")
                        .scopes("read")
                        .resourceIds(SERVER_RESOURCE_ID)
                        .secret("secret")
                ;
            }
        }
    }
    
     类似资料:
    • 我已经编写了我的OAuth2服务器,我可以成功地从我的服务器检索访问令牌,但是当它到客户端时,它总是返回“无效令牌错误”。 我已经搜索并阅读了许多文章、页面和链接,例如以下链接:Spring Security OAuth2 Resource Server Always Returning Invalid Token 但我不能解决这个问题,这是我的代码,我会很感激你能帮助我。 身份验证服务器中的配置

    • 问题内容: 我在将json对象发布到使用REST的API时遇到一些困难。我是使用cURL的新手,但是我进行了全面搜索以尝试找到问题的答案,但结果却很简短。我的cURL请求总是返回false。我知道它甚至都没有发布我的json对象,因为我仍然会从url得到响应。我的代码如下。 $ response仅返回“ false” 有什么想法吗? 问题答案: 可能为false,因为将false(即失败)返回到。

    • 这是我第一次编写一个应用程序,其中我将后端链接到fornted(spring-boot-react)。 我已经到了这样的地步,我想从客户端视图中填写一个表单并提交它(在这种情况下,将表单保存到数据库中)。 我启动了服务器(spring boot中的应用程序)和客户端(react)。启动的应用程序已加载。表单会显示出来,但当我填写表单并单击“提交”时,不会执行任何操作。我使用devtools并得到错

    • 问题内容: 我以前使用过媒体播放器,但从未遇到过此问题。每当我尝试使用MediaPlayer.create()时,该方法都会使我为null,并且无法播放声音。有什么我想念的吗? 我的sound.mp3在我的原始文件夹中,通过将声音拖到eclipse中的文件夹中,我将其放置在其中。请帮忙,因为我以前玩过声音,所以这真的困扰我:( 问题答案: 如果create() API由于某种原因失败,则返回nul

    • 问题内容: 尽管是有效的类,但以下代码会打印。 文档说方法返回 由 aClassName 命名的类对象,或者如果当前没有加载该名称的类。如果 aClassName 为,则返回。 我也试图获得当前的viewcontroller已加载但仍然得到 可能是什么问题? 更新: 即使尝试这样做,我仍然可以 问题答案: 该函数 确实 适用于(纯和Objective-C派生的)swift类,但是仅当您使用全限定名

    • 问题内容: 我觉得有点愚蠢,但它不起作用: 我有如果给定的用户是unicode。如果字符串中包含或,我想打印成功,但是我总是得到的结果。 问题答案: 隐式锚定到字符串的开头。如果要在字符串中搜索可以在字符串中任何位置的子字符串,则需要使用: 输出: 另外,Python Regexes不需要在开头和结尾都有一个。 最后,我添加到该行的末尾,因为我认为这就是您想要的。否则,您会得到类似的信息,但并不太