We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Oauth 2.0과 JWT를 구현한 소스코드를 참고하여 프로젝트를 만들었음
지금 /login/oauth2/code/~~~ 에서 인가코드를 받으려고 하는데, 아직 JWT가 없는데 필터에서 자꾸 걸린다. configure에서 해당 url은 permitAll()을 해줬는데도 말이다!!
이 때문에 만들어둔 필터에서 JWT 유효성을 체크하는 부분에서 에러가 발생하고, 정상적인 response를 돌려주지 못하고 있는 상황이다.
The text was updated successfully, but these errors were encountered:
permitAll() 메소드를 사용해도 지정한 request가 필터에 들어가는 것은 정상적인 동작임
만약 request의 헤더에 jwt가 존재하지 않는다면 신규 회원이라는 의미이기 때문에 별 다른 동작을 하지 않고 다음 필터로 넘겨주면 됨
Sorry, something went wrong.
NCookies
No branches or pull requests
Oauth 2.0과 JWT를 구현한 소스코드를 참고하여 프로젝트를 만들었음
지금 /login/oauth2/code/~~~ 에서 인가코드를 받으려고 하는데, 아직 JWT가 없는데 필터에서 자꾸 걸린다. configure에서 해당 url은 permitAll()을 해줬는데도 말이다!!
이 때문에 만들어둔 필터에서 JWT 유효성을 체크하는 부분에서 에러가 발생하고, 정상적인 response를 돌려주지 못하고 있는 상황이다.
The text was updated successfully, but these errors were encountered: