AccessTokenResponse Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The JSON data transfer object for the bearer token response typically found in "/login" and "/refresh" responses.
public sealed class AccessTokenResponse
type AccessTokenResponse = class
Public NotInheritable Class AccessTokenResponse
- Inheritance
-
AccessTokenResponse
Constructors
AccessTokenResponse() |
Properties
AccessToken |
The opaque bearer token to send as part of the Authorization request header. |
ExpiresIn |
The number of seconds before the AccessToken expires. |
RefreshToken |
If set, this provides the ability to get a new access_token after it expires using a refresh endpoint. |
TokenType |
The value is always "Bearer" which indicates this response provides a "Bearer" token in the form of an opaque AccessToken. |