Skip to content

Commit 0d21ccf

Browse files
authored
Merge pull request #105416 from CelesteDG/patch-4
Expanded AAD to Azure AD in comments
2 parents 3113507 + 387be25 commit 0d21ccf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/active-directory/develop/scenario-desktop-acquire-token-device-code-flow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ static async Task<AuthenticationResult> GetATokenForGraph()
6868
}
6969
catch (MsalUiRequiredException ex)
7070
{
71-
// No token found in the cache or AAD insists that a form interactive auth is required (e.g. the tenant admin turned on MFA)
71+
// No token found in the cache or Azure AD insists that a form interactive auth is required (e.g. the tenant admin turned on MFA)
7272
// If you want to provide a more complex user experience, check out ex.Classification
7373
7474
return await AcquireByDeviceCodeAsync(pca);
@@ -253,7 +253,7 @@ if accounts:
253253
result = app.acquire_token_silent(config["scope"], account=chosen)
254254

255255
if not result:
256-
logging.info("No suitable token exists in cache. Let's get a new one from AAD.")
256+
logging.info("No suitable token exists in cache. Let's get a new one from Azure AD.")
257257

258258
flow = app.initiate_device_flow(scopes=config["scope"])
259259
if "user_code" not in flow:

0 commit comments

Comments
 (0)