-
Notifications
You must be signed in to change notification settings - Fork 0
[FIX] 로그인 시 카카오 앱으로 리다이렉트 안되는 현상 수정 #53
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
e0ff207
feat: 카카오 소셜 로그인 로직 구현
stopstone cf8b5f5
chore: 카카오 로그인 관련 Strategy 패턴 코드 삭제
stopstone 4ddf46c
refactor: 카카오톡 로그인 실패 시 계정 로그인 재시도 로직 제거
stopstone 4f72539
refactor: 카카오 로그인 전 로그아웃 로직 추가
stopstone c36b7ef
refactor: 소셜 로그인 로직을 개인정보 동의 후 실행하도록 변경
stopstone 67397a2
refactor: 카카오 로그인 시 로그아웃 대신 연결 끊기 호출
stopstone 8484931
refactor: ETC 로그인 `TODO()` 제거
stopstone 2507548
refactor: 카카오 로그인 시점에 회원 연결 끊기 수행
stopstone 6490040
refactor: 카카오 로그인 취소 시 예외 처리 로직 수정
stopstone 19bbdc2
feat: 소셜 로그인 시 액세스 토큰 유효성 검사 추가
stopstone 56b4c2d
refactor: ETC 로그인 타입 제거
stopstone 73f0d4d
feat: 카카오 로그인 실패 시 에러 케이스별 메시지 표시
stopstone a5dfd98
refactor: 소셜 로그인 로직 추상화
stopstone 1c35416
feat: 카카오 로그인 기능 구현
stopstone 73f6cf5
refactor: 소셜 로그인 로직 분리
stopstone f63d2e1
refactor: 'showPrivacyBottomSheet' 프로퍼티명을 'requiresPrivacyConsent'로 수정
stopstone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
89 changes: 0 additions & 89 deletions
89
Near/app/src/main/java/com/alarmy/near/data/datasource/KakaoDataSource.kt
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
Near/app/src/main/java/com/alarmy/near/data/datasource/SocialLoginDataSource.kt
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
Near/app/src/main/java/com/alarmy/near/data/datasource/SocialLoginProcessor.kt
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
Near/app/src/main/java/com/alarmy/near/data/di/DataSourceModule.kt
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,5 +2,4 @@ package com.alarmy.near.model | |
|
|
||
| enum class ProviderType { | ||
| KAKAO, | ||
| ETC, | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
performSocialLoginfunction now directly receives the access token. Consider adding error handling to this function to manage potential issues with the token itself, such as an invalid or expired token. This will make the function more robust.