Skip to content

Commit

Permalink
Merge pull request #195 from JNU-econovation/fix/BE-71
Browse files Browse the repository at this point in the history
[BE-71] fix : resolveToken
  • Loading branch information
LJH098 authored Mar 2, 2024
2 parents b440227 + 66a0b31 commit 9141436
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected void doFilterInternal(

private String resolveToken(HttpServletRequest request) {
// 쿠키방식 지원
Cookie accessTokenCookie = WebUtils.getCookie(request, "accessToken");
Cookie accessTokenCookie = WebUtils.getCookie(request, "ACCESS_TOKEN");
if (accessTokenCookie != null) {
return accessTokenCookie.getValue();
}
Expand Down

0 comments on commit 9141436

Please sign in to comment.