You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/develop/includes/web-app/quickstart-python.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,9 +36,8 @@ Follow these steps to register your application in the Azure portal:
36
36
37
37
1. Sign in to the <ahref="https://portal.azure.com/"target="_blank">Azure portal</a>.
38
38
1. If you have access to multiple tenants, use the **Directory + subscription** filter :::image type="icon" source="../../media/common/portal-directory-subscription-filter.png" border="false"::: in the top menu to select the tenant in which you want to register an application.
39
-
1. Navigate to the Portal's [App registrations](https://go.microsoft.com/fwlink/?linkid=2083908) page.
40
-
1. Select **New registration**.
41
-
1. Enter a **Name** for your application, for example `python-webapp` . Users of your app might see this name, and you can change it later.
39
+
1. Navigate to the portal's [App registrations](https://go.microsoft.com/fwlink/?linkid=2083908) page, and select **New registration**.
40
+
1. Enter a **Name** for your application, for example *python-webapp*.
42
41
1. Under **Supported account types**, select **Accounts in any organizational directory and personal Microsoft accounts**.
43
42
1. Under **Redirect URIs**, select **Web** for the platform.
44
43
1. Enter a redirect URI of `http://localhost:5000/getAToken`. This can be changed later.
@@ -48,8 +47,8 @@ Follow these steps to register your application in the Azure portal:
48
47
49
48
1. On the app **Overview** page, note the **Application (client) ID** value for later use.
50
49
1. Under **Manage**, select the **Certificates & secrets** and from the **Client secrets** section, select **New client secret**.
51
-
1.Type a key description (for instance app secret), leave the default expiration, and select **Add**.
52
-
1. Save the **Value** of the **Client Secret** in a safe location. You will need it to configure the code, and you can't retrieve it later.
50
+
1.Enter a description for the client secret, leave the default expiration, and select **Add**.
51
+
1. Save the **Value** of the **Client Secret** in a safe location. You'll need it to configure the code, and you can't retrieve it later.
53
52
54
53
## Step 3: Add a scope
55
54
@@ -63,7 +62,7 @@ Follow these steps to register your application in the Azure portal:
63
62
64
63
[Download the Python code sample](https://github.com/Azure-Samples/ms-identity-python-webapp/archive/master.zip) or clone the repository:
0 commit comments