Spaces:
Running
Running
Update app.py
Browse files
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 |
+
|