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-b2c/tutorial-register-applications.md
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Tutorial - Register an application - Azure Active Directory B2C | Microsoft Docs
2
+
title: Tutorial - Register an application - Azure Active Directory B2C
3
3
description: Learn how to register a web application in Azure Active Directory B2C using the Azure portal.
4
4
services: active-directory-b2c
5
5
author: mmacy
@@ -8,7 +8,7 @@ manager: celestedg
8
8
ms.service: active-directory
9
9
ms.workload: identity
10
10
ms.topic: article
11
-
ms.date: 02/05/2019
11
+
ms.date: 06/07/2019
12
12
ms.author: marsma
13
13
ms.subservice: B2C
14
14
---
@@ -36,7 +36,9 @@ If you haven't already created your own [Azure AD B2C Tenant](tutorial-create-te
36
36
3. Select **Applications**, and then select **Add**.
37
37
4. Enter a name for the application. For example, *webapp1*.
38
38
5. For **Include web app/ web API** and **Allow implicit flow**, select **Yes**.
39
-
6. For **Reply URL**, enter an endpoint where Azure AD B2C should return any tokens that your application requests. For example, you can set it to listen locally at `https://localhost:44316` If you don't yet know the port number, you can enter a placeholder value and change it later. For testing purposes you could set it to `https://jwt.ms`, which displays the contents of a token for inspection. For this tutorial, set it to `https://jwt.ms`.
39
+
6. For **Reply URL**, enter an endpoint where Azure AD B2C should return any tokens that your application requests. For example, you could set it to listen locally at `https://localhost:44316`. If you don't yet know the port number, you can enter a placeholder value and change it later.
40
+
41
+
For testing purposes like this tutorial you can set it to `https://jwt.ms` which displays the contents of a token for inspection. For this tutorial, set the **Reply URL** to `https://jwt.ms`.
40
42
41
43
The reply URL must begin with the scheme `https`, and all reply URL values must share a single DNS domain. For example, if the application has a reply URL of `https://login.contoso.com`, you can add to it like this URL `https://login.contoso.com/new`. Or, you can refer to a DNS subdomain of `login.contoso.com`, such as `https://new.login.contoso.com`. If you want to have an application with `login-east.contoso.com` and `login-west.contoso.com` as reply URLs, you must add those reply URLs in this order: `https://contoso.com`, `https://login-east.contoso.com`, `https://login-west.contoso.com`. You can add the latter two because they're subdomains of the first reply URL, `contoso.com`.
42
44
@@ -46,9 +48,9 @@ If you haven't already created your own [Azure AD B2C Tenant](tutorial-create-te
46
48
47
49
If your application exchanges a code for a token, you need to create an application secret.
48
50
49
-
1.Navigate back to the newly created app after following above tutorial.
50
-
2. Select **Keys** and then click**Generate key**.
51
-
3. Select **Save** to view the key. Make note of the **App key** value. You use the value as the application secret in your application's code.
51
+
1.In the **Azure AD B2C - Applications** page, select the application you created, for example *webapp1*.
52
+
2. Select **Keys** and then select**Generate key**.
53
+
3. Select **Save** to view the key. Make note of the **App key** value. You use this value as the application secret in your application's code.
52
54
53
55
## Next steps
54
56
@@ -58,5 +60,7 @@ In this article, you learned how to:
58
60
> * Register a web application
59
61
> * Create a client secret
60
62
63
+
Next, learn how to create user flows to enable your users to sign up, sign in, and manage their profiles.
64
+
61
65
> [!div class="nextstepaction"]
62
-
> [Create user flows in Azure Active Directory B2C](tutorial-create-user-flows.md)
66
+
> [Create user flows in Azure Active Directory B2C >](tutorial-create-user-flows.md)
0 commit comments