MSALNativeAuthTokenResult
public class MSALNativeAuthTokenResult : NSObject
Undocumented
-
The Access Token requested. Note that if access token is not returned in token response, this property will be returned as an empty string.
Declaration
Swift
@objc public var accessToken: String { get } -
The Refresh Token. This will be nil unless
returnRefreshTokenwas set to true inMSALNativeAuthGetAccessTokenParameterswhen requesting this token.Declaration
Swift
@objc public var refreshToken: String? { get } -
Get the list of permissions for the access token for the account.
Declaration
Swift
@objc public var scopes: [String] { get } -
Get the expiration date for the access token for the account. This value is calculated based on current UTC time measured locally and the value expiresIn returned from the service
Declaration
Swift
@objc public var expiresOn: Date? { get }
View on GitHub