ITokenResult Interface
Holds the final information of a succesfull client credentials flow.
Syntax
Unit: Sphinx.OidcClient.AuthResult
ITokenResult = interface(IInterface);
Methods
Name | Description |
---|---|
IsExpired | Indicates if the current information (i.e., access token) is expired. |
Properties
Name | Description |
---|---|
AccessToken | Holds the access token which can be used to authenticate to the API server. |
TokenType | The type of the access token. Usually just contains "Bearer". |
RefreshToken | If present, contains a refresh token that can be used to obtain new access tokens. |
Scope | Spaced-separated list of scope tokens granted in the access token. |
Expiration | The date and time where the access token expires. |