You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| BackchannelUserCodeParameterSupported | Gets a flag indicating whether the backchannel user code parameter is supported |
188
+
| RequirePushedAuthorizationRequests | Gets a flag indicating whether the use of pushed authorization requests (PAR) is required |
189
+
| IntrospectionSigningAlgorithmsSupported | Gets the signing algorithms supported for introspection responses |
190
+
| IntrospectionEncryptionAlgorithmsSupported | Gets the encryption "alg" values supported for encrypted JWT introspection responses |
191
+
| IntrospectionEncryptionEncValuesSupported | Gets the encryption "enc" values supported for encrypted JWT introspection responses |
192
+
| Scopes | The list of scopes associated to the token or an empty array if no `scope` claim is present |
193
+
| ClientId | The client identifier for the OAuth 2.0 client that requested the token or `null` if the `client_id` claim is missing |
194
+
| UserName | The human-readable identifier for the resource owner who authorized the token or `null` if the `username` claim is missing |
195
+
| TokenType | The type of the token as defined in section 5.1 of OAuth 2.0 (RFC6749) or `null` if the `token_type` claim is missing |
196
+
| Expiration | The expiration time of the token or `null` if the `exp` claim is missing |
197
+
| IssuedAt | The issuance time of the token or `null` if the `iat` claim is missing |
198
+
| NotBefore | The validity start time of the token or `null` if the `nbf` claim is missing |
199
+
| Subject | The subject of the token or `null` if the `sub` claim is missing |
200
+
| Audiences | The service-specific list of string identifiers representing the intended audience for the token or an empty array if no `aud` claim is present |
201
+
| Issuer | The string representing the issuer of the token or `null` if the `iss` claim is missing |
202
+
| JwtId | The string identifier for the token or `null` if the `jti` claim is missing |
0 commit comments