fix(kakao): account_email scope 제거 (비즈앱 미승인 → KOE205)
Deploy / deploy (push) Successful in 1m5s

This commit is contained in:
chpark
2026-04-23 01:41:35 +09:00
parent 5390beaed9
commit 90f332485f
+3 -1
View File
@@ -37,10 +37,12 @@ export async function kakaoWebLoginStart(): Promise<void> {
window.alert('카카오 JS 키가 설정되지 않았습니다. EXPO_PUBLIC_KAKAO_JS_KEY 확인 필요.');
return;
}
// 개인(비즈앱 아님) 앱은 account_email/phone_number scope 요청 불가 (KOE205)
// 필요한 최소 scope만 요청. 이메일은 비즈앱 승인 후 추가 가능.
Kakao.Auth.authorize({
redirectUri: window.location.origin + '/',
state: 'kakao_login',
scope: 'profile_nickname,profile_image,account_email',
scope: 'profile_nickname,profile_image',
});
}