Skip to content

Commit

Permalink
fix: kakao call back
Browse files Browse the repository at this point in the history
  • Loading branch information
oxdjww committed Jul 4, 2024
1 parent 40176d6 commit 33765ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class SecurityConfig {
private final JwtTokenProvider jwtTokenProvider;

private final String[] swaggerUrls = {"/","/swagger-ui/**", "/v3/api-docs/**"};
private final String[] authUrls = {"/kakao/callback/**", "/api/auth/kakao", "/api/files/**"};
private final String[] authUrls = {"/login/oauth2/code/kakao/**", "/api/auth/kakao", "/api/files/**"};
private final String[] allowedUrls = Stream.concat(Arrays.stream(swaggerUrls), Arrays.stream(authUrls))
.toArray(String[]::new);

Expand Down

0 comments on commit 33765ee

Please sign in to comment.