gpt4 book ai didi

Spring Security OAuth2 check_token 端点

转载 作者:IT老高 更新时间:2023-10-28 13:53:42 25 4
gpt4 key购买 nike

我正在尝试使用 spring security oauth 设置资源服务器以与单独的授权服务器一起使用。我正在使用需要 /check_token 端点的 RemoteTokenServices

我可以看到 /oauth/check_token 端点在使用 @EnableAuthorizationServer 时默认启用。但是,默认情况下无法访问端点。

是否应手动添加以下条目以将此端点列入白名单?

http.authorizeRequests().antMatchers("/oauth/check_token").permitAll();

这将使所有人都可以访问此端点,这是期望的行为吗?或者我错过了什么。

提前致谢,

最佳答案

你必须

@Override
public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception
{
oauthServer.checkTokenAccess("permitAll()");
}

有关此的更多信息::

How to use RemoteTokenService?

关于Spring Security OAuth2 check_token 端点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26750999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com