Skip to content

Commit 0fc744b

Browse files
wcabusmaartenba
andauthored
Apply suggestions from code review
Co-authored-by: Maarten Balliauw <[email protected]>
1 parent b5dd50c commit 0fc744b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/content/docs/introspection-auth-handler/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ You can disable this behavior by setting `SkipTokensWithDots = true` in the [`OA
2525

2626
## Features
2727

28-
- Implements the OAuth 2.0 token introspection protocol.
29-
- Supports both opaque and JWT access token introspection.
30-
- Supports caching of introspection results to reduce load on the authorization server.
31-
- Provides a customizable authentication handler for ASP.NET Core.
32-
- Integrates seamlessly with ASP.NET Core's authentication middleware.
28+
- Implements the OAuth 2.0 token introspection protocol
29+
- Supports both opaque and JWT access token introspection
30+
- Supports caching of introspection results to reduce load on the authorization server
31+
- Provides a customizable authentication handler for ASP.NET Core
32+
- Integrates seamlessly with ASP.NET Core's authentication middleware
3333

3434
## Installation
3535

src/content/docs/introspection-auth-handler/options.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Configuring OAuth 2.0 token introspection
2+
title: Configuring OAuth 2.0 Token Introspection
33
description: Learn more about the various options when adding the ASP.NET Core authentication handler for OAuth 2.0 token introspection.
44
sidebar:
55
label: Options
@@ -17,7 +17,7 @@ You set the options when registering the authentication handler at startup time,
1717
builder.Services.AddAuthentication(OAuth2IntrospectionDefaults.AuthenticationScheme)
1818
.AddOAuth2Introspection(options =>
1919
{
20-
// configure options here..
20+
// configure options here...
2121
});
2222
```
2323

0 commit comments

Comments
 (0)