From b6976f56120de1469dabc455705731729011e26a Mon Sep 17 00:00:00 2001 From: sb Date: Sat, 11 Jul 2026 00:28:42 +0900 Subject: [PATCH] =?UTF-8?q?fix(auth):=20=EC=95=A0=ED=94=8C=20=EB=A1=9C?= =?UTF-8?q?=EA=B7=B8=EC=9D=B8=20aud=20=EA=B8=B0=EB=B3=B8=EA=B0=92=20applic?= =?UTF-8?q?ation.yml=20=E2=86=92=20kr.sblog.slimbudget.app?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - @Value 기본값보다 application.yml 이 우선 → 실제 값이 옛 번들ID였음 - iOS 번들ID 변경(.app)에 맞춰 서버 기대 aud 정합 (유효하지 않은 애플 토큰 해결) Co-Authored-By: Claude Opus 4.8 --- src/main/resources/application.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 8b80859..0212d09 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -80,7 +80,7 @@ app: # 구글 OAuth 웹 클라이언트 ID (Google Cloud Console 발급). 미설정 시 구글 로그인 비활성. google-client-id: ${GOOGLE_CLIENT_ID:} # 애플 로그인 aud(=iOS 앱 번들 ID). 네이티브 Sign in with Apple 의 identity token 대상값. - apple-client-id: ${APPLE_CLIENT_ID:kr.sblog.slimbudget} + apple-client-id: ${APPLE_CLIENT_ID:kr.sblog.slimbudget.app} # AI 자연어 입력 파싱(Claude). 키 미설정 시 규칙기반 파서로 폴백(무중단). Haiku 권장(학습 미사용·저렴). anthropic-api-key: ${ANTHROPIC_API_KEY:} anthropic-model: ${ANTHROPIC_MODEL:claude-haiku-4-5}