gpt4 book ai didi

spring - 如何使用 XML 使用 Spring Security Oauth2 启用/oauth/check_token

转载 作者:行者123 更新时间:2023-12-04 23:20:24 25 4
gpt4 key购买 nike

我已经使用 spring-security 3.2.* 和 javaconfig 成功启用了“/oauth/check_token”端点,但目前我仅限于 spring-security 3.1.4,然后我坚持使用 XML 配置。 “/oauth/token”端点正在按我的意愿工作,但我无法启用 check_token 端点,而且我找不到任何(非 javaconfig)文档来解释要做什么。

Vanila 授权服务器配置:

<oauth:authorization-server 
client-details-service-ref="client-service"
token-services-ref="tokenServices" >
<oauth:refresh-token disabled="false" />
<oauth:client-credentials disabled="false" />
<oauth:password authentication-manager-ref="userAuthenticationManager" />
</oauth:authorization-server>

http安全配置:
<sec:http 
auto-config="true"
pattern="/oauth/token"
create-session="stateless"
authentication-manager-ref="clientAuthenticationManager">
<sec:intercept-url pattern="/oauth/token" access="IS_AUTHENTICATED_FULLY" />
<sec:anonymous enabled="false"/>
<sec:http-basic entry-point-ref="clientAuthenticationEntryPoint" />
</sec:http>

我尝试添加以下 http 配置但没有成功。
<sec:http 
auto-config="true"
pattern="/oauth/check_token"
create-session="stateless"
authentication-manager-ref="clientAuthenticationManager">
<sec:intercept-url pattern="/oauth/check_token" access="IS_AUTHENTICATED_FULLY" />
<sec:anonymous enabled="false"/>
<sec:http-basic entry-point-ref="clientAuthenticationEntryPoint" />
</sec:http>

请,任何建议。一个有效的例子会很棒。

最好的事物
./克里斯托弗

最佳答案

您需要创建一个类型为 CheckTokenEndpoint 的 bean。 ( org.springframework.security.oauth2.provider.endpoint.CheckTokenEndpoint )。

关于spring - 如何使用 XML 使用 Spring Security Oauth2 启用/oauth/check_token,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28629952/

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