Skip to content

[FIX] iOS 애플 로그인 유저 회원 탈퇴 실패 (Client Secret 생성 오류)#480

Merged
ljy1348 merged 1 commit intodevfrom
fix/#479
Mar 24, 2026
Merged

[FIX] iOS 애플 로그인 유저 회원 탈퇴 실패 (Client Secret 생성 오류)#480
ljy1348 merged 1 commit intodevfrom
fix/#479

Conversation

@GiJungPark
Copy link
Copy Markdown
Member

Related Issue

Key Changes

1. 애플 로그인 탈퇴 시 Client Secret(JWT) 생성 오류 수정

서브 모듈 구조로 전환되면서 리소스 참조 방식이 변경되었으나, 기존 탈퇴 로직이 ClassPathResource를 사용하는 구버전 상태로 남아있어 Private Key(.p8) 파일을 찾지 못하는 문제를 확인했습니다.

ResourceLoader를 주입받아 file: 프리픽스를 사용하는 방식으로 수정하여, 설정된 외부 경로의 키 파일을 정상적으로 로드하도록 개선했습니다.

2. 코드 수정 내역

기존: new ClassPathResource(keyPath)를 통해 클래스패스 내부 탐색

변경: resourceLoader.getResource("file:" + keyPath)를 통해 실제 파일 시스템 경로 탐색

To Reviewers

References

@ljy1348 ljy1348 merged commit a1a1764 into dev Mar 24, 2026
2 checks passed
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.

[FIX] iOS 애플 로그인 유저 회원 탈퇴 실패 (Client Secret 생성 오류)

2 participants