Skip to content

Commit 7ef7cb2

Browse files
authored
Merge pull request #688 from DuendeSoftware/mb/atm
Fix links to Duende.AccessTokenManagement
2 parents 90ae0c6 + 0034477 commit 7ef7cb2

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/content/docs/accesstokenmanagement/advanced/DPoP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ services.AddClientCredentialsTokenManagement()
5757
Once the key has been configured for the client, then the library will use it to produce a DPoP proof token when calling the token server (including token renewals if relevant).
5858
There is nothing explicit needed on behalf of the developer using this library.
5959

60-
### `dpop_jkt` At The token Server's Authorize Endpoint
60+
### `dpop_jkt` At The Token Server's Authorize Endpoint
6161

6262
When using DPoP and `AddOpenIdConnectAccessTokenManagement`, this library will also automatically include the `dpop_jkt` parameter to the authorize endpoint.
6363

src/content/docs/identityserver/quickstarts/3a-token-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Given that the access token has a finite lifetime, you typically want to
2929

3030
ASP.NET Core has built-in facilities that can help you with some of those tasks
3131
(like caching or sessions), but there is still quite some work left to do.
32-
[Duende.AccessTokenManagement](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/wiki)
32+
[Duende.AccessTokenManagement](/accesstokenmanagement)
3333
can help. It provides abstractions for storing tokens, automatic refresh of expired tokens, etc.
3434

3535
## Requesting A Refresh Token

src/content/docs/identityserver/samples/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Key takeaways:
7575
### MVC Client with automatic Access Token Management
7676

7777
This sample shows how to
78-
use [Duende.AccessTokenManagement](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/wiki) to automatically
78+
use [Duende.AccessTokenManagement](/accesstokenmanagement) to automatically
7979
manage access tokens.
8080

8181
The sample uses a special client in the sample IdentityServer with a short token lifetime (75 seconds). When repeating

src/content/docs/identityserver/tokens/pop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ new Client
200200
#### Enabling DPoP Support In Your Client
201201

202202
The easiest approach for supporting DPoP in your client is to use the DPoP support in the `Duende.AccessTokenManagement`
203-
library ([docs available here](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/wiki/DPoP)).
203+
library ([docs available here](/accesstokenmanagement/advanced/dpop/)).
204204
It provides DPoP client support for both client credentials and code flow style clients.
205205
DPoP is enabled by assigning the `DPoPJsonWebKey` on the client configuration.
206206

src/content/docs/identityserver/tokens/refresh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ var response = await client.RequestRefreshTokenAsync(new RefreshTokenRequest
6363
});
6464
```
6565

66-
The [Duende.AccessTokenManagement](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/wiki) library can be
66+
The [Duende.AccessTokenManagement](/accesstokenmanagement) library can be
6767
used to automate refresh & access token lifetime management in ASP.NET Core.
6868

6969
## Binding Refresh Tokens

src/content/docs/identityserver/tokens/requesting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var response = await client.RequestClientCredentialsTokenAsync(new ClientCredent
7171

7272
### Automating Token Requests In ASP.NET Core And Worker Applications
7373

74-
The [Duende.AccessTokenManagement](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/wiki) library can automate client credential request and token lifetime management for you.
74+
The [Duende.AccessTokenManagement](/accesstokenmanagement) library can automate client credential request and token lifetime management for you.
7575
Using this library, you can enable access token management for an HTTP client provided by `IHttpClientFactory`.
7676

7777
You can add the necessary services to ASP.NET Core's service provider by calling `AddClientCredentialsTokenManagement()`. One or more named client definitions need to be registered by calling `AddClient()`.
@@ -228,4 +228,4 @@ builder.Services.AddAuthentication(options =>
228228
```
229229

230230
### Automating Token Management In ASP.NET Core
231-
The [Duende.AccessTokenManagement](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/wiki) library can also be used to automate token lifetime management in ASP.NET Core applications for you.
231+
The [Duende.AccessTokenManagement](/accesstokenmanagement) library can also be used to automate token lifetime management in ASP.NET Core applications for you.

src/content/docs/identityserver/ui/login/mfa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ redirect_from:
99
- /identityserver/v7/ui/login/mfa/
1010
---
1111

12-
Duende IdentityServer itself doesn't implement multi-factor authentication (MFA). MFA is part of the login process in the user interface which is the [responsibility of the hosting application](..). Microsoft provides some [general guidelines](https://learn.microsoft.com/en-us/aspnet/core/security/authentication/mfa) on how to enable MFA in ASP.NET Core.
12+
Duende IdentityServer itself doesn't implement multi-factor authentication (MFA). MFA is part of the login process in the user interface which is the [responsibility of the hosting application](../index.md). Microsoft provides some [general guidelines](https://learn.microsoft.com/en-us/aspnet/core/security/authentication/mfa) on how to enable MFA in ASP.NET Core.
1313

1414
## MFA Hosted In IdentityServer
1515

0 commit comments

Comments
 (0)