We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb023ef + f49436f commit d79cc5aCopy full SHA for d79cc5a
msal/application.py
@@ -271,7 +271,8 @@ def _get_authority_aliases(self, instance):
271
if not self.authority_groups:
272
resp = requests.get(
273
"https://login.microsoftonline.com/common/discovery/instance?api-version=1.1&authorization_endpoint=https://login.microsoftonline.com/common/oauth2/authorize",
274
- headers={'Accept': 'application/json'})
+ headers={'Accept': 'application/json'},
275
+ verify=self.verify, proxies=self.proxies, timeout=self.timeout)
276
resp.raise_for_status()
277
self.authority_groups = [
278
set(group['aliases']) for group in resp.json()['metadata']]
0 commit comments