From ad7ed88c1022dc5d7172d9d4c91c681e0204cbfc Mon Sep 17 00:00:00 2001 From: Joe DeCock Date: Fri, 25 Oct 2024 13:40:53 -0500 Subject: [PATCH] Update 3a_token_management.md Annoying formatting thing --- .../v7/docs/content/quickstarts/3a_token_management.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IdentityServer/v7/docs/content/quickstarts/3a_token_management.md b/IdentityServer/v7/docs/content/quickstarts/3a_token_management.md index 9a89f1b1..550309d7 100644 --- a/IdentityServer/v7/docs/content/quickstarts/3a_token_management.md +++ b/IdentityServer/v7/docs/content/quickstarts/3a_token_management.md @@ -101,7 +101,7 @@ There are two changes here that utilize the AccessTokenManagement NuGet package: On each call to OnGet in _CallApi.cshtml.cs_ a new HttpClient is created in the code above. Recommended however is to use the [HttpClientFactory](https://learn.microsoft.com/en-us/dotnet/core/extensions/httpclient-factory) pattern so that instances can be reused. -`Duende.AccessTokenManagement.OpenIdConnect` builds on top of _HttpClientFactory_ to create HttpClient instances that automatically retrieve the needed access token and refresh if needed. +*Duende.AccessTokenManagement.OpenIdConnect* builds on top of _HttpClientFactory_ to create HttpClient instances that automatically retrieve the needed access token and refresh if needed. In the client in _Program.cs_ under the call to _AddOpenIdConnectAccessTokenManagement_ register the HttpClient: