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
/// Retrieves the access token for the currently signed in account from the cache such that
122
-
/// the scope of retrieved access token is a superset of requested scopes. If the access token
123
-
/// has expired, it will be refreshed using the refresh token that's stored in the cache. If no
124
-
/// access token matching the requested scopes is found in cache then a new access token is fetched.
125
-
/// - Parameters:
126
-
/// - scopes: Permissions you want included in the access token received in the result. Not all scopes are guaranteed to be included in the access token returned.
127
-
/// - forceRefresh: Optional. Ignore any existing access token in the cache and force MSAL to get a new access token from the service.
128
-
/// - correlationId: Optional. UUID to correlate this request with the server for debugging.
129
-
/// - delegate: Delegate that receives callbacks for the Get Access Token flow.
130
-
@available(*, deprecated, message:"This method is now deprecated. Use the method 'getAccessToken(parameters:)' instead.")
0 commit comments