awacke1 commited on
Commit
d301be5
Β·
verified Β·
1 Parent(s): d5816db

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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']