From a4c9df08511f0033b24ac74c0643f225393b5c1b Mon Sep 17 00:00:00 2001 From: Jean-Marc Prieur Date: Wed, 25 Sep 2019 11:45:26 +0200 Subject: [PATCH] Adding apps.json to take the quickstart into account in the portal --- AppCreationScripts/Apps.json | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 AppCreationScripts/Apps.json diff --git a/AppCreationScripts/Apps.json b/AppCreationScripts/Apps.json new file mode 100644 index 0000000..196253d --- /dev/null +++ b/AppCreationScripts/Apps.json @@ -0,0 +1,42 @@ +{ + "Sample": { + "Title": "Integrating Azure AD into a Python web application", + "Level": 400, + "Client": "Python, MSAL.Python" + }, + "AppRegistrations": [ + { + "x-ms-id": "PythonWebApp", + "x-ms-name": "ms-identity-python-webapp", + "x-ms-version": "2.0", + "logoutUrl": "http://localhost:5000/logout", + "replyUrlsWithType": [ + { + "url": "http://localhost:5000/getAToken", + "type": "Web" + } + ], + "x-ms-passwordCredentials": "Auto", + "oauth2AllowImplicitFlow": false, + "oauth2AllowIdTokenImplicitFlow": false, + "requiredResourceAccess": [ + { + "x-ms-resourceAppName": "Microsoft Graph", + "resourceAppId": "00000003-0000-0000-c000-000000000000", + "resourceAccess": [ + { + "id": "e1fe6dd8-ba31-4d61-89e7-88639da4683d", + "type": "Scope", + "x-ms-name": "user.read" + }, + { + "id": "b340eb25-3456-403f-be2f-af7a0d370277", + "type": "Scope", + "x-ms-name": "User.ReadBasic.All" + } + ] + } + ] + } + ] +} \ No newline at end of file