awacke1 commited on
Commit
c685413
·
verified ·
1 Parent(s): edb78cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -2,4 +2,15 @@ import msal
2
  from msal import PublicClientApplication
3
 
4
  APPLICATION_ID_KEY = os.getenv('APPLICATION_ID_KEY ')
5
- CLIENT_SECRET_KEY = os.getenv('CLIENT_SECRET_KEY ')
 
 
 
 
 
 
 
 
 
 
 
 
2
  from msal import PublicClientApplication
3
 
4
  APPLICATION_ID_KEY = os.getenv('APPLICATION_ID_KEY ')
5
+ CLIENT_SECRET_KEY = os.getenv('CLIENT_SECRET_KEY ')
6
+
7
+ authority_url = 'https://login.microsoftonline.com/consumers'
8
+ base_url = 'https://graph.microsoft.com/v1.0/'
9
+ endpoint = base_url + 'me'
10
+
11
+ SCOPES = ['User.Read','User.Export.All']
12
+
13
+ # Authenticate with Auth Code
14
+ client_instance = msal.ConfidentialClientApplication(client_id=APPLICATION_ID_KEY, client_credential=CLIENT_SECRET_KEY, authority_url=authority_url )
15
+
16
+