当前位置:   article > 正文

spring security oauth 应用中的问题_message": "unauthorized

message": "unauthorized

简单跳过登录认证的方法

启动类上

@SpringBootApplication
  • 1

换成

@SpringBootApplication(exclude= {SecurityAutoConfiguration.class })
  • 1

注意:上面方法是临时用 后续要正常使用登录认证方法需要改回来

[java.lang.IllegalStateException: This object has not been built]

原因是启用类上的@SpringBootApplication(exclude= {SecurityAutoConfiguration.class }) 注解 导致配置类没加载, 改成原先的@SpringBootApplication就行了

org.springframework.web.client.HttpClientErrorException$Unauthorized: 401 : [no body]

解决方法:

@Bean
    @LoadBalanced
    public RestTemplate restTemplate() {
        RestTemplate restTemplate = new RestTemplate();
        restTemplate.setErrorHandler(new DefaultResponseErrorHandler());
        return restTemplate;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

改成

@Bean
    @LoadBalanced
    public RestTemplate restTemplate() {
        SimpleClientHttpRequestFactory requestFactory = new SimpleClientHttpRequestFactory();
        requestFactory.setOutputStreaming(false);
        RestTemplate restTemplate = new RestTemplate(requestFactory);
        restTemplate.setErrorHandler(new DefaultResponseErrorHandler());
        return restTemplate;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

就能看到具体的错误原因了

401 : “{“timestamp”:“2023-05-31T12:00:12.072+08:00”,“status”:401,“error”:“Unauthorized”,“message”:“Unauthorized”,“path”:”/oauth/check_token"}"

  1. postman 调用check_token出现401, 需要如下配置
public class AuthConfig extends AuthorizationServerConfigurerAdapter {
    //.......
    @Override
    public void configure(AuthorizationServerSecurityConfigurer oauthServer) {
        oauthServer.allowFormAuthenticationForClients();
        // 放开check_token api, 允许不登陆访问
        oauthServer.checkTokenAccess("permitAll()");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  1. postman 调用check_token 200, 但是带token访问api出现check_token 401问题
    解决方法:确保颁布token的client id和配置里面的配置是一致的

即这两张图片上的client_id得是一致的在这里插入图片描述
在这里插入图片描述

遇到莫名其妙问题 需要debug源码的

application.yml 文件里 配置debug模式

logging:
  level:
    org.springframework: DEBUG
  • 1
  • 2
  • 3

这样可以看到完整的方法调用过程,方便找到问题所在

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/684590
推荐阅读
相关标签
  

闽ICP备14008679号