- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经使用 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>
<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>
<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/
API 使用 spring 内置的/oauth/check_token 端点来验证具有基本身份验证的用户。除了传递无效凭据之外,我似乎想不出任何其他方案。还有其他场景吗? 最佳答案 要检查此端点,您应
我正在尝试使用 spring security oauth 设置资源服务器以与单独的授权服务器一起使用。我正在使用需要 /check_token 端点的 RemoteTokenServices 。 我
我有一个 ActivationTokenGenerator,它创建了一个用于帐户验证的 token ,该 token 将通过电子邮件发送。例如,我使用包括时间戳、id 和用户事件状态在内的参数来配置它
CloudFoundry 的 UAA 有一个 RemoteTokenServices 类(也是 Spring oauth2 的一部分),它通过转到 UAA 服务器的 check_token 端点来执行
我已经使用 spring-security 3.2.* 和 javaconfig 成功启用了“/oauth/check_token”端点,但目前我仅限于 spring-security 3.1.4,然
春露 /check_token端点;见 this link 对于 /check_token我们需要配置RemoteTokenServices并提取 token 。不过我们也可以配置UserInfoTo
我是一名优秀的程序员,十分优秀!