Skip to content

Commit bcd0f39

Browse files
authored
Merge pull request #3 from Azure-Samples/addingAppsJsonForPortalQuickstart
Adding apps.json to take the quickstart into account in the portal
2 parents e03be35 + a4c9df0 commit bcd0f39

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

AppCreationScripts/Apps.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"Sample": {
3+
"Title": "Integrating Azure AD into a Python web application",
4+
"Level": 400,
5+
"Client": "Python, MSAL.Python"
6+
},
7+
"AppRegistrations": [
8+
{
9+
"x-ms-id": "PythonWebApp",
10+
"x-ms-name": "ms-identity-python-webapp",
11+
"x-ms-version": "2.0",
12+
"logoutUrl": "http://localhost:5000/logout",
13+
"replyUrlsWithType": [
14+
{
15+
"url": "http://localhost:5000/getAToken",
16+
"type": "Web"
17+
}
18+
],
19+
"x-ms-passwordCredentials": "Auto",
20+
"oauth2AllowImplicitFlow": false,
21+
"oauth2AllowIdTokenImplicitFlow": false,
22+
"requiredResourceAccess": [
23+
{
24+
"x-ms-resourceAppName": "Microsoft Graph",
25+
"resourceAppId": "00000003-0000-0000-c000-000000000000",
26+
"resourceAccess": [
27+
{
28+
"id": "e1fe6dd8-ba31-4d61-89e7-88639da4683d",
29+
"type": "Scope",
30+
"x-ms-name": "user.read"
31+
},
32+
{
33+
"id": "b340eb25-3456-403f-be2f-af7a0d370277",
34+
"type": "Scope",
35+
"x-ms-name": "User.ReadBasic.All"
36+
}
37+
]
38+
}
39+
]
40+
}
41+
]
42+
}

0 commit comments

Comments
 (0)