Namo-log / Server

당신의 모든 모임과 함께할, '나모'
https://litt.ly/namong
1 stars 1 forks source link

[Bug] 토큰 재발급 요청 실패 #218

Closed luke0408 closed 3 months ago

luke0408 commented 3 months ago

⛔️Bug

스웨거에서 토큰 재발급 요청시 실패하는 오류

Expected behavior

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가 걸려서 권한 문제가 생기는 듯 함

Additional context

관련되어 문제가 생길 것 같은 소셜 유저 탈퇴 api 도 확인 후 수정작업 들어가겠슴