第二次连续调用后,从资源服务器对授权服务器的内省调用失败

发布于 2025-01-19 14:52:35 字数 931 浏览 0 评论 0原文

连续2次尝试后,内省的失败。 错误:内省端点响应无效,因为内容型'text/html'与json在org.springframework.security.oauth.server.server.sererce.authentication.opaqueatokeationalauthationauthationauthication provider.getOauthententicprovider.getOauthententenentIcatiCatecticatecticatecticatecticatecticatecticatecticatecticatecticatecticatecticatecticatecticatecticatecticpple

正在使用:

@Override

protected void configure(HttpSecurity http) throws Exception {
    http
      .authorizeRequests(authz -> authz
        .antMatchers(HttpMethod.GET, "/bars/**").hasAuthority("SCOPE_read")
        .antMatchers(HttpMethod.POST, "/bars").hasAuthority("SCOPE_write")
        .anyRequest().authenticated())
      .oauth2ResourceServer(oauth2 -> oauth2
        .opaqueToken(token -> token.introspectionUri(this.introspectionUri)
          .introspectionClientCredentials(this.clientId, this.clientSecret)));
}

Introspect is failing after 2 successive attempts.
Error : Introspect endpoint response was invalid,as content-type 'text/html' is not compatible with JSON at org.springframework.security.oauth.server.resource.authentication.OpaqueaTokenAuthenticationProvider.getOAuth2Authenticatedprincple

this is the sample code we are using:

@Override

protected void configure(HttpSecurity http) throws Exception {
    http
      .authorizeRequests(authz -> authz
        .antMatchers(HttpMethod.GET, "/bars/**").hasAuthority("SCOPE_read")
        .antMatchers(HttpMethod.POST, "/bars").hasAuthority("SCOPE_write")
        .anyRequest().authenticated())
      .oauth2ResourceServer(oauth2 -> oauth2
        .opaqueToken(token -> token.introspectionUri(this.introspectionUri)
          .introspectionClientCredentials(this.clientId, this.clientSecret)));
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文