Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ authorization_request_url = client_instance.get_authorization_request_url(SCOPES
|
|
28 |
st.write('Connecting to MSGraph with url:' + authorization_request_url)
|
29 |
wb.open(authorization_request_url, new=True)
|
30 |
|
31 |
-
access_token =
|
32 |
code=AUTHORIZATION_KEY,
|
33 |
scopes=SCOPES)
|
34 |
|
|
|
28 |
st.write('Connecting to MSGraph with url:' + authorization_request_url)
|
29 |
wb.open(authorization_request_url, new=True)
|
30 |
|
31 |
+
access_token = client_instance.acquire_token_by_authorization_code(
|
32 |
code=AUTHORIZATION_KEY,
|
33 |
scopes=SCOPES)
|
34 |
|