From 81b1bd175205bba3a0fac9a5c316d5d5e67645be Mon Sep 17 00:00:00 2001 From: damienbod Date: Sun, 25 Jul 2021 22:14:11 +0200 Subject: [PATCH] small text fixes to security-authentication-claims doc (#22846) * small text fixes * review fixes * Add spacing Co-authored-by: Luke Latham <1622880+guardrex@users.noreply.github.com> --- aspnetcore/security/authentication/claims.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aspnetcore/security/authentication/claims.md b/aspnetcore/security/authentication/claims.md index 8cf5f31187..7d8f8dafd1 100644 --- a/aspnetcore/security/authentication/claims.md +++ b/aspnetcore/security/authentication/claims.md @@ -21,9 +21,9 @@ This article covers the following areas: * Reset the claims namespaces * Customize, extend the claims using -## Mapping claims using Open ID Connect authentication +## Mapping claims using OpenID Connect authentication -The profile claims can be returned in the `id_token` which is returned after a successful authentication. The ASP.NET Core client app just needs to request the profile scope. When using the `id_token` for claims, no extra claims mapping is required. +The profile claims can be returned in the `id_token`, which is returned after a successful authentication. The ASP.NET Core client app only requires the profile scope. When using the `id_token` for claims, no extra claims mapping is required. ```csharp public void ConfigureServices(IServiceCollection services) @@ -104,7 +104,7 @@ public void ConfigureServices(IServiceCollection services) ## Claims namespaces, default namespaces -ASP.NET Core adds default namespaces to some known claims which might not be required in your app. You can disable this namespace adding if you would like to use the claims exactly like the Open ID Connect server created. +ASP.NET Core adds default namespaces to some known claims, which might not be required in the app. Optionally, disable these added namespaces and use the exact claims that the OpenID Connect server created. ```csharp public void Configure(IApplicationBuilder app)