AuthErrorCause

@Serializable(with = AuthErrorCauseSerializer::class)
enum AuthErrorCause : Enum<AuthErrorCause>

AuthError 에러 원인
Causes of AuthError

Entries

Link copied to clipboard
@SerialName(value = "invalid_request")
InvalidRequest

잘못된 파라미터를 전달한 경우
Passed wrong parameters

Link copied to clipboard
@SerialName(value = "invalid_client")
InvalidClient

잘못된 앱 키를 전달한 경우
Passed with the wrong app key

Link copied to clipboard
@SerialName(value = "invalid_scope")
InvalidScope

잘못된 동의항목 ID를 전달한 경우
Passed with invalid scope IDs

Link copied to clipboard
@SerialName(value = "invalid_grant")
InvalidGrant

리프레시 토큰이 만료되었거나 존재하지 않는 경우
The refresh token has expired or does not exist

Link copied to clipboard
@SerialName(value = "misconfigured")
Misconfigured

앱의 플랫폼 설정이 올바르지 않은 경우
Platform settings of the app are misconfigured

Link copied to clipboard
@SerialName(value = "unauthorized")
Unauthorized

앱에 사용 권한이 없는 경우
The app does not have permission

Link copied to clipboard
@SerialName(value = "access_denied")
AccessDenied

사용자가 동의 화면에서 카카오 로그인을 취소한 경우
The user canceled Kakao Login at the consent screen

Link copied to clipboard
@SerialName(value = "server_error")
ServerError

서버 에러
Server error

Link copied to clipboard
@SerialName(value = "login_required")
LoginRequired

SSO(Single Sign-On) 로그인을 요청했으나, 카카오톡에 연결된 카카오계정이 없는 경우
SSO (Single Sign-On) login is requested but there is no Kakao Account linked to Kakao Talk

Link copied to clipboard
@SerialName(value = "consent_required")
ConsentRequired

SSO(Single Sign-On) 로그인을 요청했으나, 사용자가 카카오톡에 로그인한 적이 없거나 동의해야할 동의항목이 존재하는 경우
SSO (Single Sign-On) login is requested but the user has never logged in to Kakao Talk or there are consent items that require consent

Link copied to clipboard
@SerialName(value = "interaction_required")
InteractionRequired

SSO(Single Sign-On) 로그인을 요청했으나, 사용자 정보 추가 제공 등 기타 사용자 동작이 필요한 경우
SSO (Single Sign-On) login is requested but additional user actions such as providing more user information are required

Link copied to clipboard

알 수 없음
Unknown

Functions

Link copied to clipboard
fun valueOf(value: String): AuthErrorCause

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
fun values(): Array<AuthErrorCause>

Returns an array containing the constants of this enum type, in the order they're declared.

Properties

Link copied to clipboard
val name: String
Link copied to clipboard
val ordinal: Int