OAuthErrorResponse

@Serializable
data class OAuthErrorResponse(val error: String, val errorDescription: String? = null)

OAuth 2.0 エラーレスポンス RFC 6749 Section 5.2 準拠

Constructors

Link copied to clipboard
constructor(error: String, errorDescription: String? = null)

Properties

Link copied to clipboard

エラーコード(RFC 6749で定義された値)

Link copied to clipboard
@SerialName(value = "error_description")
val errorDescription: String?

エラーの詳細説明(オプション)