Skip to content
New issue

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

인증 및 회원가입 기능을 구현한다. #179

Merged
merged 14 commits into from
Jan 24, 2025
Merged

인증 및 회원가입 기능을 구현한다. #179

merged 14 commits into from
Jan 24, 2025

Conversation

le2sky
Copy link
Member

@le2sky le2sky commented Jan 23, 2025

  • close 인증 및 회원가입 기능을 구현한다. #178
  • 회원 인증 및 회원 가입 기능을 구현했어요.
    • 기존재 회원의 요청이라면, 인증으로 판단하여 토큰을 갱신합니다.
    • 신규 회원의 요청이라면, 회원가입 및 인증으로 판단하여 회원을 등록하고 토큰을 설정해요.
    • 토큰은 jjwt 라이브러리를 사용했어요. java-jwt 랑 비교해서 버전이 낮다는 점이 마음에 걸렸지만, 근래에도 활발히 유지보수가 진행된다는 점이 결정 근거였어요.
    • jwt에 사용한 알고리즘은 jjwt 디펄트 알고리즘인 HS256을 사용했습니다.
  • 해당 요청에 clientSecret이 필요한 이유는 서버에서 accessToken만 받는 경우, 발생할 수 있는 비정상 케이스를 예방하기 위함이에요.
    • 외부 oauth 로그인으로 accessToken을 얻거나, developer setting으로 accessToken을 생성한다.
    • 직접 서버로 accessToken만 포함한 요청을 보낸다.
    • 회원 가입이 성공한다.

Copy link

github-actions bot commented Jan 23, 2025

Test Results

79 tests   78 ✅  4s ⏱️
32 suites   1 💤
32 files     0 ❌

Results for commit 59cde26.

♻️ This comment has been updated with latest results.

@le2sky le2sky merged commit 745a6af into main Jan 24, 2025
3 checks passed
@le2sky le2sky deleted the 178 branch January 24, 2025 09:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

인증 및 회원가입 기능을 구현한다.
1 participant