Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use Microsoft Graph rather than AAD Graph as default scope
  • Loading branch information
rayluo committed Oct 14, 2019
commit 7d5468a9545890e68b212d9a3813f294c6895db7
2 changes: 1 addition & 1 deletion tests/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def _get_app_and_auth_code(
client_secret=None,
authority="https://login.microsoftonline.com/common",
port=44331,
scopes=["https://graph.windows.net/.default"],
scopes=["https://graph.microsoft.com/.default"], # Microsoft Graph
):
from msal.oauth2cli.authcode import obtain_auth_code
app = msal.ClientApplication(client_id, client_secret, authority=authority)
Expand Down