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