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/app-registration-portal-training-guide.md
+19-21Lines changed: 19 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ ms.custom: aaddev
18
18
19
19
# The new Azure portal app registration experience
20
20
21
-
There are many improvements in the new [App registrations](https://go.microsoft.com/fwlink/?linkid=2083908) experience in the Azure portal. If you're more familiar with the Application registration portal (apps.dev.microsoft.com) experience for registering or managing converged applications, referred to as the old experience, this training guide will get you started using the new experience.
21
+
There are many improvements in the new [App registrations](https://go.microsoft.com/fwlink/?linkid=2083908) experience in the Azure portal. If you're more familiar with the Application registration portal (apps.dev.microsoft.com) for registering or managing applications, referred to here as the "old experience," this guide will get you started using the new experience.
22
22
23
23
## What's not changing?
24
24
@@ -41,8 +41,8 @@ There are many improvements in the new [App registrations](https://go.microsoft.
41
41
42
42
## Key changes
43
43
44
-
- In the old experience, apps were by default registered as converged
45
-
apps supporting all organizational accounts (multitenant) as well as
44
+
- In the old experience, apps were by default registered as *converged*
45
+
apps - apps that support all organizational accounts (multitenant) as well as
46
46
personal Microsoft accounts. This could not be modified through the
47
47
old experience, making it difficult to create apps that supported
48
48
only organizational accounts (either multitenant or single tenant).
@@ -75,10 +75,10 @@ There are many improvements in the new [App registrations](https://go.microsoft.
75
75
76
76
## New app registration
77
77
78
-
In the old experience, to register a converged app you were only
78
+
In the old experience, to register an app you were only
79
79
required to provide a Name. The apps that were created were registered
80
-
as converged apps supporting all organizational directory (multitenant)
81
-
as well as personal Microsoft accounts. This could not be modified through the old experience, making it difficult to create apps that supported only organizational accounts (either multitenant or single tenant). [Learn more about supported account types](v2-supported-account-types.md)
80
+
as *converged* apps - apps supporting all organizational directories (multitenant)
81
+
as well as personal Microsoft accounts. This could not be modified through the old experience, making it difficult to create apps that supported only organizational accounts (either single- or multi-tenant). [Learn more about supported account types](v2-supported-account-types.md)
82
82
83
83
In the new experience, you must provide a Name for the app and choose
84
84
the Supported account types. You can optionally provide a redirect URI.
The old experience had a single app management page for converged apps
92
+
The old experience had a single app management page for apps
93
93
with the following sections: Properties, Application secrets, Platforms,
94
94
Owners, Microsoft Graph Permissions, Profile, and Advanced Options.
95
95
96
-
The new experience in the Azure portal represents these features into
96
+
The new experience in the Azure portal presents these features in
97
97
separate pages. Here's where you can find the equivalent functionality:
98
98
99
-
- Properties - Name and Application ID is on the Overview page.
100
-
101
-
- Application Secrets is on the Certificates & secrets page
102
-
103
-
- Platforms configuration is on the Authentication page
104
-
105
-
- Microsoft Graph permissions is on the API permissions page along
106
-
with other permissions
107
-
108
-
- Profile is on Branding page
109
-
110
-
- Advanced option - Live SDK support is on the Authentication page.
99
+
- Properties - Name and Application ID is on the Overview page.
100
+
- Application Secrets is on the Certificates & secrets page
101
+
- Platforms configuration is on the Authentication page
102
+
- Microsoft Graph permissions is on the API permissions page along with other permissions
103
+
- Profile is on Branding page
104
+
- Advanced option - Live SDK support is on the Authentication page.
111
105
112
106
## Application secrets/Certificates & secrets
113
107
@@ -179,7 +173,7 @@ the manifest editor or the API, or didn't exist.
179
173
- Publisher domain (which is displayed to users on the [application\'s
180
174
consent
181
175
prompt](application-consent-experience.md))
182
-
can be found on the Branding blade page. For more info on how to
176
+
can be found on the Branding page. For more info on how to
183
177
configure a publisher domain, see [this
184
178
how-to](howto-configure-publisher-domain.md).
185
179
@@ -199,3 +193,7 @@ The new experience has the following limitations:
199
193
200
194
> [!NOTE]
201
195
> If you're a personal Microsoft account user in Azure AD tenant, and the tenant admin has restricted access to Azure portal, you may get an access denied. However, if you come through the shortcut by typing App registrations in the search bar or pinning it, you'll be able to access the new experience.
196
+
197
+
## Next steps
198
+
199
+
To get started with the new app registration experience, see [Quickstart: Register an application with the Microsoft identity platform](quickstart-register-app.md).
Copy file name to clipboardExpand all lines: articles/active-directory/develop/msal-net-token-cache-serialization.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ The following classes and interfaces are used in token cache serialization:
48
48
49
49
The strategies are different depending on if you're writing a token cache serialization for a [public client application](msal-client-applications.md) (desktop), or a [confidential client application](msal-client-applications.md)) (web app / web API, daemon app).
50
50
51
-
### Token cache for a public client
51
+
### Token cache for a public client
52
52
53
53
Since MSAL.NET v2.x you have several options for serializing the token cache of a public client. You can serialize the cache only to the MSAL.NET format (the unified format cache is common across MSAL and the platforms). You can also support the [legacy](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Token-cache-serialization) token cache serialization of ADAL V3.
Their usage is featured in the [ASP.NET Core web app tutorial](https://docs.microsoft.com/aspnet/core/tutorials/first-mvc-app/) in the phase [2-2 Token Cache](https://github.com/Azure-Samples/active-directory-aspnetcore-webapp-openidconnect-v2/tree/master/2-WebApp-graph-user/2-2-TokenCache).
324
324
325
325
## Next steps
326
+
326
327
The following samples illustrate token cache serialization.
327
328
328
329
| Sample | Platform | Description|
329
330
| ------ | -------- | ----------- |
330
331
|[active-directory-dotnet-desktop-msgraph-v2](https://github.com/azure-samples/active-directory-dotnet-desktop-msgraph-v2)| Desktop (WPF) | Windows Desktop .NET (WPF) application calling the Microsoft Graph API. |
331
-
|[active-directory-dotnet-v1-to-v2](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2)| Desktop (Console) | Set of Visual Studio solutions illustrating the migration of Azure AD v1.0 applications (using ADAL.NET) to Azure AD v2.0 applications, also named converged applications (using MSAL.NET), in particular [Token Cache Migration](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/blob/master/TokenCacheMigration/README.md)|
332
+
|[active-directory-dotnet-v1-to-v2](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2)| Desktop (Console) | Set of Visual Studio solutions illustrating the migration of Azure AD v1.0 applications (using ADAL.NET) to Microsoft identity platform applications(using MSAL.NET). In particular, see[Token Cache Migration](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/blob/master/TokenCacheMigration/README.md)|
Copy file name to clipboardExpand all lines: articles/active-directory/develop/registration-config-sso-how-to.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ manager: CelesteDG
7
7
8
8
ms.service: active-directory
9
9
ms.subservice: develop
10
-
ms.custom: aaddev
10
+
ms.custom: aaddev
11
11
ms.workload: identity
12
12
ms.topic: conceptual
13
13
ms.date: 07/15/2019
@@ -37,6 +37,6 @@ For iOS, see [Enabling Cross App SSO in iOS](https://docs.microsoft.com/azure/ac
37
37
38
38
[Integrating Apps to AzureAD](https://docs.microsoft.com/azure/active-directory/develop/active-directory-integrating-applications)<br>
39
39
40
-
[Consent and Permissioning for AzureAD v2.0 converged Apps](https://docs.microsoft.com/azure/active-directory/develop/active-directory-v2-scopes)<br>
40
+
[Permissions and consent in the Microsoft identity platform endpoint](https://docs.microsoft.com/azure/active-directory/develop/active-directory-v2-scopes)<br>
0 commit comments