Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Клиент для получения метаданных OAuth сервера из discovery endpoint.
Link copied to clipboard
Link copied to clipboard
data class OAuthServerMetadata(val issuer: String, val deviceAuthorizationEndpoint: String, val tokenEndpoint: String, val authorizationEndpoint: String?, val registrationEndpoint: String?, val introspectionEndpoint: String?, val grantTypesSupported: List<String>, val responseTypesSupported: List<String>?, val scopesSupported: List<String>?)
Метаданные OAuth сервера, полученные из discovery endpoint.
Link copied to clipboard
Link copied to clipboard
data class StoredToken(val accessToken: String, val tokenType: String, val expiresAt: Long?, val refreshToken: String?)
Link copied to clipboard
data class TokenResponse(val accessToken: String, val tokenType: String, val expiresIn: Int?, val refreshToken: String?)
Link copied to clipboard