From c739e8d85e5885fdb22790393a9dba9fa749637f Mon Sep 17 00:00:00 2001 From: 4mjeo <4mj.eo@dsm.hs.kr> Date: Sat, 2 Mar 2024 23:04:43 +0900 Subject: [PATCH] =?UTF-8?q?update=20::=20=ED=95=84=EC=9A=94=EC=97=86?= =?UTF-8?q?=EB=8A=94=20=EB=A1=9C=EC=A7=81=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../infrastructure/configuration/AuthenticationFilter.kt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/configuration/AuthenticationFilter.kt b/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/configuration/AuthenticationFilter.kt index 0e75e9a..a4bda08 100644 --- a/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/configuration/AuthenticationFilter.kt +++ b/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/configuration/AuthenticationFilter.kt @@ -36,11 +36,6 @@ class AuthenticationFilter( response: HttpServletResponse, filterChain: FilterChain ) { - if (request.requestURI.contains("/oauth2/token")) { - filterChain.doFilter(request, response) - return - } - request.getParameter("access_token")?.let { accessToken -> setAuthenticationByAccessToken(accessToken) filterChain.doFilter(request, response)