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
@@ -115,7 +115,7 @@ If you want to use this automation:
115
115
> Other ways of running the scripts are described in [App Creation Scripts](./AppCreationScripts/AppCreationScripts.md)
116
116
117
117
1. In the list of pages for the application registration of the `TodoListService-v2` application, select **Manifest**
118
-
- in the manifest, search for **"accessTokenAcceptedVersion"**, and replace **null** by **2**. This property lets Azure AD know that the Web API accepts v2.0 tokens
118
+
- in the manifest, search for **"accessTokenAcceptedVersion"**, and replace **null** by **2**. This property lets Azure AD know that the Web API accepts Microsoft identity platform (v2.0) tokens
119
119
- Select **Save**
120
120
121
121
@@ -174,7 +174,7 @@ If you want to register your apps manually, as a first step you'll need to:
174
174
- in the manifest, search for **"accessTokenAcceptedVersion"**, and see that its value is **2**. This property lets Azure AD know that the Web API accepts v2.0 tokens
175
175
- Select **Save**
176
176
177
-
> Important: it's up to the Web API to decide which version of token (v1.0 or v2.0) it accepts. Then when clients request a token for your Web API using the v2.0 endpoint, they'll get a token which version is accepted by the Web API. The code validating the tokens in this sample was written to accept both versions.
177
+
> Important: it's up to the Web API to decide which version of token (v1.0 or v2.0) it accepts. Then when clients request a token for your Web API using the Microsoft identity platform endpoint, they'll get a token which version is accepted by the Web API. The code validating the tokens in this sample was written to accept both versions.
178
178
179
179
#### Register the client app (TodoListClient)
180
180
@@ -309,7 +309,7 @@ Update `Startup.cs` file:
309
309
310
310
`AddProtectWebApiWithMicrosoftIdentityPlatformV2` does the following:
311
311
- add the **Jwt**BearerAuthenticationScheme (Note the replacement of BearerAuthenticationScheme by **Jwt**BearerAuthenticationScheme)
312
-
- set the authority to be the Microsoft identity platform v2.0 identity
312
+
- set the authority to be the Microsoft identity platform identity
313
313
- sets the audiences to validate
314
314
- register an issuer validator that accepts issuers to be in the Microsoft identity platform clouds.
Copy file name to clipboardExpand all lines: 3.-Web-api-call-Microsoft-graph-for-personal-accounts/README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@ author: jmprieur
5
5
level: 400
6
6
client: .NET Desktop (WPF)
7
7
service: ASP.NET Core Web API, Microsoft Graph
8
-
endpoint: AAD v2.0
8
+
endpoint: Microsoft identity platform
9
9
---
10
-
# ASP.NET Core Web API calling Microsoft Graph including personal accounts, itself called from a WPF application using the Microsoft identity platform (formerly named Azure AD v2.0)
10
+
# ASP.NET Core Web API calling Microsoft Graph including personal accounts, itself called from a WPF application using the Microsoft identity platform
@@ -372,8 +372,8 @@ For more information, visit the following links:
372
372
-[Acquiring tokens with authorization codes on web apps](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Acquiring-tokens-with-authorization-codes-on-web-apps)
- Articles about the Azure AD V2 endpoint [http://aka.ms/aaddevv2](http://aka.ms/aaddevv2), with a focus on:
376
-
-[Azure Active Directory v2.0 and OAuth 2.0 On-Behalf-Of flow](https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-v2-protocols-oauth-on-behalf-of)
375
+
- Articles about the Microsoft identity platform endpoint [http://aka.ms/aaddevv2](http://aka.ms/aaddevv2), with a focus on:
376
+
-[Microsoft identity platform and OAuth 2.0 On-Behalf-Of flow](https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-v2-protocols-oauth-on-behalf-of)
377
377
378
378
-[Introduction to Identity on ASP.NET Core](https://docs.microsoft.com/en-us/aspnet/core/security/authentication/identity?view=aspnetcore-2.1&tabs=visual-studio%2Caspnetcore2x)
0 commit comments