mirror of
https://github.com/vale981/outlook-oauth-hack
synced 2025-03-04 08:31:38 -05:00
Pass tenant ID through to msal
This commit is contained in:
parent
dc44ef6407
commit
fbdd73c3f3
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ print_access_token = True
|
|||
|
||||
# We use the cache to extract the refresh token
|
||||
cache = SerializableTokenCache()
|
||||
app = ConfidentialClientApplication(config.ClientId, client_credential=config.ClientSecret, token_cache=cache)
|
||||
app = ConfidentialClientApplication(config.ClientId, client_credential=config.ClientSecret, token_cache=cache, authority=config.Authority)
|
||||
|
||||
|
||||
old_refresh_token = open(config.RefreshTokenFileName,'r').read()
|
||||
|
|
Loading…
Add table
Reference in a new issue