MSALNativeAuthGetAccessTokenParameters
@objcMembers
public class MSALNativeAuthGetAccessTokenParameters : NSObject
Encapsulates the parameters passed to the getAccessToken method of MSALNativeAuthUserAccountResult
-
Set to true to ignore any existing access token in the cache and force MSAL to get a new access token from the service.
Declaration
Swift
public var forceRefresh: Bool -
Permissions you want included in the access token received. Not all scopes are guaranteed to be included in the access token returned.
Declaration
Swift
public var scopes: [String]? -
The claims parameter that needs to be sent to the service.
Declaration
Swift
public var claimsRequest: MSALClaimsRequest? -
UUID to correlate this request with the server for debugging.
Declaration
Swift
public var correlationId: UUID?
View on GitHub