Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,9 @@ import msal
|
|
7 |
APPLICATION_ID_KEY = os.getenv('APPLICATION_ID_KEY')
|
8 |
CLIENT_SECRET_KEY = os.getenv('CLIENT_SECRET_KEY')
|
9 |
AUTHORITY_URL = 'https://login.microsoftonline.com/common' # Use 'common' for multi-tenant apps
|
10 |
-
REDIRECT_URI = 'http://localhost:8501' # π Make sure this matches your app's redirect URI
|
|
|
|
|
11 |
|
12 |
# π― Define the scopes your app will need
|
13 |
SCOPES = ['User.Read', 'Calendars.ReadWrite', 'Mail.ReadWrite', 'Notes.ReadWrite.All', 'Files.ReadWrite.All']
|
|
|
7 |
APPLICATION_ID_KEY = os.getenv('APPLICATION_ID_KEY')
|
8 |
CLIENT_SECRET_KEY = os.getenv('CLIENT_SECRET_KEY')
|
9 |
AUTHORITY_URL = 'https://login.microsoftonline.com/common' # Use 'common' for multi-tenant apps
|
10 |
+
#REDIRECT_URI = 'http://localhost:8501' # π Make sure this matches your app's redirect URI
|
11 |
+
REDIRECT_URI = 'https://huggingface.co/spaces/awacke1/MSGraphAPI' # π Make sure this matches your app's redirect URI
|
12 |
+
|
13 |
|
14 |
# π― Define the scopes your app will need
|
15 |
SCOPES = ['User.Read', 'Calendars.ReadWrite', 'Mail.ReadWrite', 'Notes.ReadWrite.All', 'Files.ReadWrite.All']
|