Skip to content

Commit d88cffe

Browse files
committed
fix small typos
1 parent 3ae9d22 commit d88cffe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aspnetcore/security/authentication/configure-oidc-web-authentication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ OpenID Connect comes in many variations and all server implementations have slig
3838
> [!NOTE]
3939
> From .NET 9, [OAuth 2.0 Pushed Authorization Requests (PAR) RFC 9126](https://datatracker.ietf.org/doc/html/rfc9126) is used per default, if the OpenID Connect server supports this. This is a three step flow and not a two step flow as shown above. (User Info request is an optional step.)
4040
41-
## Create an Open ID Connect Code Flow client using Razor Pages
41+
## Create an Open ID Connect code flow client using Razor Pages
4242

4343
The following section shows how to implement an OpenID Connect client in an empty ASP.NET Core Razor page project. The same logic can be applied to any ASP.NET Core web project with only the UI integration being different.
4444

@@ -48,7 +48,7 @@ Add the [Microsoft.AspNetCore.Authentication.OpenIdConnect](https://www.nuget.or
4848

4949
### Setup the OpenID Connect client
5050

51-
Configure the Startup authentication in the project using the builder.Services. The configuration is dependent on the OpenID Connect server. Each OpenID Connect server requires small differences in the setup.
51+
Add the authentication to the web application using the builder.Services in the **Program.cs** file. The configuration is dependent on the OpenID Connect server. Each OpenID Connect server requires small differences in the setup.
5252

5353
```csharp
5454
builder.Services.AddAuthentication(options =>

0 commit comments

Comments
 (0)