Closed luke0408 closed 3 months ago
스웨거에서 토큰 재발급 요청시 실패하는 오류
private AbstractRequestMatcherRegistry<AuthorizeHttpRequestsConfigurer<HttpSecurity>.AuthorizedUrl> defaultAuthorizeHttpRequest( AuthorizeHttpRequestsConfigurer<HttpSecurity>.AuthorizationManagerRequestMatcherRegistry auth ) { return auth .requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll() .requestMatchers(HttpMethod.OPTIONS, "*").permitAll() .requestMatchers(HttpMethod.GET, READ_ONLY_PUBLIC_ENDPOINTS).permitAll() .requestMatchers(PUBLIC_ENDPOINTS).permitAll() .requestMatchers(AUTHENTICATED_ENDPOINTS).authenticated() .requestMatchers(ANONYMOUS_ENDPOINTS).anonymous(); }
위 코드 중 ANONYMOUS_ENDPOINTS에 대한 설정에 토큰 재발급 api가 걸려서 권한 문제가 생기는 듯 함
ANONYMOUS_ENDPOINTS
관련되어 문제가 생길 것 같은 소셜 유저 탈퇴 api 도 확인 후 수정작업 들어가겠슴
⛔️Bug
스웨거에서 토큰 재발급 요청시 실패하는 오류
Expected behavior
위 코드 중
ANONYMOUS_ENDPOINTS
에 대한 설정에 토큰 재발급 api가 걸려서 권한 문제가 생기는 듯 함Additional context
관련되어 문제가 생길 것 같은 소셜 유저 탈퇴 api 도 확인 후 수정작업 들어가겠슴