This commit is contained in:
@@ -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',
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user