You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `Duende.AccessTokenManagement` library provides automatic access token management features for .NET worker and ASP.NET Core web applications:
14
14
15
-
- automatic acquisition and lifetime management of client credentials based access tokens for machine-to-machine communication
16
-
- automatic access token lifetime management using a refresh token for API calls on-behalf of the currently logged-in user
15
+
- automatic acquisition and lifetime management of client credentials based access tokens for machine-to-machine communication (using the `Duende.AccessTokenManagement` package)
16
+
- automatic access token lifetime management using a refresh token for API calls on-behalf of the currently logged-in user (using the `Duende.AccessTokenManagement.OpenIdConnect` package)
17
17
- revocation of access tokens
18
18
19
+
## Machine-to-machine token management
20
+
19
21
To get started, install the NuGet Package:
20
22
21
23
```bash
22
24
dotnet add package Duende.AccessTokenManagement
23
25
```
24
26
27
+
See [Service Workers and Background Tasks](/accesstokenmanagement/workers.md) for more information on how to get started.
0 commit comments