awacke1 commited on
Commit
b368fb6
Β·
verified Β·
1 Parent(s): 5a6abb8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -1
app.py CHANGED
@@ -430,6 +430,9 @@ def handle_onedrive_integration(access_token):
430
  else:
431
  st.error("Failed to delete file.")
432
 
 
 
 
433
  def main():
434
  st.title("πŸ¦„ MS Graph API with AI & Cloud Integration for M365")
435
 
@@ -475,4 +478,27 @@ def main():
475
  else:
476
  access_token = st.session_state['access_token']
477
 
478
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430
  else:
431
  st.error("Failed to delete file.")
432
 
433
+
434
+
435
+
436
  def main():
437
  st.title("πŸ¦„ MS Graph API with AI & Cloud Integration for M365")
438
 
 
478
  else:
479
  access_token = st.session_state['access_token']
480
 
481
+ user_info = make_api_call(access_token, 'me')
482
+ if user_info:
483
+ st.sidebar.write(f"πŸ‘‹ Hello, {user_info.get('displayName', 'User')}!")
484
+
485
+ if selected_products:
486
+ for product in selected_products:
487
+ if product == "πŸ“§ Outlook":
488
+ handle_outlook_integration(access_token)
489
+ elif product == "πŸ“… Calendar":
490
+ handle_calendar_integration(access_token)
491
+ elif product == "πŸ“‹ Tasks":
492
+ handle_tasks_integration(access_token)
493
+ elif product == "πŸ—‚οΈ OneDrive":
494
+ handle_onedrive_integration(access_token)
495
+ # Add more product integrations here
496
+ else:
497
+ st.write("No products selected. Please select products from the sidebar.")
498
+
499
+ if __name__ == "__main__":
500
+ main()
501
+
502
+
503
+
504
+