Skip to content

Commit 7bf6322

Browse files
Update articles/active-directory/develop/tutorial-v2-windows-desktop.md
Co-authored-by: Owen Richards <[email protected]>
1 parent 6fab3f7 commit 7bf6322

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/develop/tutorial-v2-windows-desktop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ Calling the `AcquireTokenInteractive` method results in a window that prompts us
268268

269269
The `AcquireTokenSilent` method handles token acquisitions and renewals without any user interaction. After `AcquireTokenInteractive` is executed for the first time, `AcquireTokenSilent` is the usual method to use to obtain tokens that access protected resources for subsequent calls, because calls to request or renew tokens are made silently.
270270

271-
Eventually, the `AcquireTokenSilent` method fails. Reasons for failure might be that the user has either signed out or changed their password on another device. When MSAL detects that the issue can be resolved by requiring an interactive action, it fires an `MsalUiRequiredException` exception. Your application can handle this exception in two ways:
271+
Eventually, the `AcquireTokenSilent` method may fail. Reasons for failure might be that the user has either signed out or changed their password on another device. When MSAL detects that the issue can be resolved by requiring an interactive action, it fires an `MsalUiRequiredException` exception. Your application can handle this exception in two ways:
272272

273273
- It can make a call against `AcquireTokenInteractive` immediately. This call results in prompting the user to sign in. This pattern is used in online applications where there's no available offline content for the user. The sample generated by this guided setup follows this pattern, which you can see in action the first time you execute the sample.
274274

0 commit comments

Comments
 (0)