AuthErrorCause enum

KakaoAuthException의 발생 원인

Inheritance
  • Object
  • Enum
  • AuthErrorCause

Constructors

AuthErrorCause()
const

Values

invalidRequest → const AuthErrorCause

요청 파라미터 오류

invalidClient → const AuthErrorCause

유효하지 않은 앱

invalidScope → const AuthErrorCause

유효하지 않은 scope ID

invalidGrant → const AuthErrorCause

인증 수단이 유효하지 않아 인증할 수 없는 상태

misconfigured → const AuthErrorCause

설정이 올바르지 않음 (android key hash 또는 redirect uri).

unauthorized → const AuthErrorCause

앱이 요청 권한이 없음

accessDenied → const AuthErrorCause

접근이 거부 됨 (동의 취소)

serverError → const AuthErrorCause

서버 내부 에러

unknown → const AuthErrorCause

기타 에러

Properties

hashCode → int
The hash code for this object.
read-onlyinherited
index → int
A numeric identifier for the enumerated value.
read-onlyinherited
runtimeType → Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Constants

values → const List<AuthErrorCause>
A constant List of the values in this enum, in order of their declaration.
[invalidRequest, invalidClient, invalidScope, invalidGrant, misconfigured, unauthorized, accessDenied, serverError, unknown]