We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8456621 commit 509b3a2Copy full SHA for 509b3a2
1 file changed
app_config.py
@@ -15,11 +15,11 @@
15
16
# You can find more Microsoft Graph API endpoints from Graph Explorer
17
# https://developer.microsoft.com/en-us/graph/graph-explorer
18
-ENDPOINT = 'https://graph.microsoft.com/v1.0/me/calendars'
+ENDPOINT = 'https://graph.microsoft.com/v1.0/users' # This resource requires no admin consent
19
20
# You can find the proper permission names from this document to form a scope
21
# https://docs.microsoft.com/en-us/graph/permissions-reference
22
-SCOPE = ["https://graph.microsoft.com/Calendars.Read"]
+SCOPE = ["https://graph.microsoft.com/User.ReadBasic.All"]
23
24
SESSION_TYPE = "filesystem" # So token cache will be stored in server-side session
25
0 commit comments