File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 31
31
ConfidentialClientApplication ,
32
32
PublicClientApplication ,
33
33
)
34
+ from .oauth2cli .oidc import Prompt
34
35
from .token_cache import TokenCache , SerializableTokenCache
35
36
Original file line number Diff line number Diff line change 62
62
# after already extracting the username from an earlier sign-in
63
63
# by using the preferred_username claim from returned id_token_claims.
64
64
65
- #prompt="select_account" , # Optional. It forces to show account selector page
66
- #prompt="create" , # Optional. It brings user to a self-service sign-up flow.
65
+ #prompt=msal.Prompt.SELECT_ACCOUNT , # Or simply "select_account". Optional. It forces to show account selector page
66
+ #prompt=msal.Prompt.CREATE , # Or simply "create". Optional. It brings user to a self-service sign-up flow.
67
67
# Prerequisite: https://docs.microsoft.com/en-us/azure/active-directory/external-identities/self-service-sign-up-user-flow
68
68
)
69
69
You can’t perform that action at this time.
0 commit comments