Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -33,14 +33,17 @@ access_token = client_instance.acquire_token_by_authorization_code(
|
|
33 |
code=AUTHORIZATION_KEY,
|
34 |
scopes=SCOPES)
|
35 |
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
44 |
|
45 |
# URLs used in this sample app to demonstrate MS Graph in Python
|
46 |
# https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationMenuBlade/~/Authentication/appId/d36c689d-3c61-4be6-a230-c09fc54cf80d/objectId/ece93996-1d7c-4b39-abc5-de51487073ed/isMSAApp~/false/defaultBlade/Overview/appSignInAudience/AzureADandPersonalMicrosoftAccount/servicePrincipalCreated~/true
|
|
|
33 |
code=AUTHORIZATION_KEY,
|
34 |
scopes=SCOPES)
|
35 |
|
36 |
+
try:
|
37 |
+
access_token_id = access_token['access_token']
|
38 |
+
headers = {'Authorization': 'Bearer ' + access_token_id}
|
39 |
+
|
40 |
+
endpoint = base_url + 'me'
|
41 |
+
response = requests.get(endpoint, headers=headers)
|
42 |
+
|
43 |
+
st.write(response)
|
44 |
+
st.write(response.json)
|
45 |
+
except:
|
46 |
+
st.write('No auth key returned from MS graph - redirect issue?')
|
47 |
|
48 |
# URLs used in this sample app to demonstrate MS Graph in Python
|
49 |
# https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationMenuBlade/~/Authentication/appId/d36c689d-3c61-4be6-a230-c09fc54cf80d/objectId/ece93996-1d7c-4b39-abc5-de51487073ed/isMSAApp~/false/defaultBlade/Overview/appSignInAudience/AzureADandPersonalMicrosoftAccount/servicePrincipalCreated~/true
|