MineAuth
Toggle table of contents
VersionPlaceholder
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
MineAuth
core
/
party.morino.mineauth.core.web.router.auth.oauth
/
IntrospectionResponse
Introspection
Response
@
Serializable
data
class
IntrospectionResponse
(
val
active
:
Boolean
,
val
scope
:
String
?
=
null
,
val
clientId
:
String
?
=
null
,
val
username
:
String
?
=
null
,
val
tokenType
:
String
?
=
null
,
val
exp
:
Long
?
=
null
,
val
iat
:
Long
?
=
null
,
val
nbf
:
Long
?
=
null
,
val
sub
:
String
?
=
null
,
val
aud
:
String
?
=
null
,
val
iss
:
String
?
=
null
,
val
jti
:
String
?
=
null
)
RFC 7662 OAuth 2.0 Token Introspection レスポンス
リソースサーバーがトークンの状態とメタデータを確認するためのレスポンス形式
Members
Constructors
Introspection
Response
Link copied to clipboard
constructor
(
active
:
Boolean
,
scope
:
String
?
=
null
,
clientId
:
String
?
=
null
,
username
:
String
?
=
null
,
tokenType
:
String
?
=
null
,
exp
:
Long
?
=
null
,
iat
:
Long
?
=
null
,
nbf
:
Long
?
=
null
,
sub
:
String
?
=
null
,
aud
:
String
?
=
null
,
iss
:
String
?
=
null
,
jti
:
String
?
=
null
)
Properties
active
Link copied to clipboard
val
active
:
Boolean
aud
Link copied to clipboard
val
aud
:
String
?
client
Id
Link copied to clipboard
@
SerialName
(
value
=
"client_id"
)
val
clientId
:
String
?
exp
Link copied to clipboard
val
exp
:
Long
?
iat
Link copied to clipboard
val
iat
:
Long
?
iss
Link copied to clipboard
val
iss
:
String
?
jti
Link copied to clipboard
val
jti
:
String
?
nbf
Link copied to clipboard
val
nbf
:
Long
?
scope
Link copied to clipboard
val
scope
:
String
?
sub
Link copied to clipboard
val
sub
:
String
?
token
Type
Link copied to clipboard
@
SerialName
(
value
=
"token_type"
)
val
tokenType
:
String
?
username
Link copied to clipboard
val
username
:
String
?