support multi o365 account to choose which to auth (#2399)

ref: https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow#request-an-authorization-code
This commit is contained in:
Siulun Rock 2022-08-09 05:47:17 +08:00 committed by GitHub
parent 31e73026a6
commit 960d8f2663
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -322,6 +322,7 @@ export function buildO365AuthURL() {
response_mode: 'query',
code_challenge: CODE_CHALLENGE,
code_challenge_method: 'S256',
prompt: 'select_account',
})}`;
}