OAuth
Microsoft OAuth
Example
Add Authenticator
through the extension methods of ICompositeAuthenticator
.
AddMicrosoftOAuth / AddForceMicrosoftOAuth
AddMicrosoftOAuth
validates the cached Microsoft OAuth session and, if the session is valid, doesn't proceed authentication and moves on to the next authenticator.
The Force method does not validate the Microsoft OAuth session and proceeds authentication unconditionally.
Setting OAuth Mode
Interactive
A window will pop up prompting the user to enter the email and password for their Microsoft account and proceed to sign in.
Silent
Proceed with the login without prompting the user for a login. If the cached session hasn't expired, the token will be used; if it has, it will attempt to refresh it. If the refresh fails, a MicrosoftOAuthException
exception is thrown.
Signout
Clears only cached OAuth sessions. The browser on user may still have user's login information.
Signout with Clearing Browser Cache
Displays the OAuth sign out page and clears the session.
or, you can set browser options:
Last updated