-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from DuendeSoftware/joe/release-prep
Final polish for release
- Loading branch information
Showing
13 changed files
with
104 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# MacOS | ||
.DS_Store | ||
|
||
# Rider | ||
.idea | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,25 @@ | ||
# Duende.AccessTokenManagement | ||
Automatic access token management for machine to machine and user-centric OAuth and OIDC flows | ||
## About Duende.AccessTokenManagement | ||
This is the repository for a set of .NET libraries that manage OAuth and OpenId | ||
Connect access tokens. These tools automatically acquire new tokens when old | ||
tokens are about to expire, provide conveniences for using the current token | ||
with HTTP clients, and can revoke tokens that are no longer needed. | ||
|
||
[Documentation](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/wiki) | ||
## Packages | ||
The libraries in this repository are distributed as NuGet packages. | ||
|
||
- [Duende.AccessTokenManagement](https://www.nuget.org/packages/Duende.AccessTokenManagement) manages tokens acquired in machine-to-machine flows in | ||
[.NET workers](https://learn.microsoft.com/en-us/dotnet/core/extensions/workers) and [ASP.NET Core worker services](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/host/hosted-services). | ||
- [Duende.AccessTokenManagement.OpenIdConnect](https://www.nuget.org/packages/Duende.AccessTokenManagement.OpenIdConnect) | ||
manages tokens acquired in user-centric flows in [ASP.NET Core](https://dotnet.microsoft.com/en-us/apps/aspnet) | ||
applications. | ||
|
||
## Documentation | ||
Documentation is available [here](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/wiki). | ||
|
||
## License and Feedback | ||
Duende.AccessTokenManagement is released as open source under the | ||
[Apache 2.0 license](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/blob/main/LICENSE). | ||
[Bug reports, feature requests](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/issues) and | ||
[contributions](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/pulls) are welcome. | ||
If you have an idea for a new feature or significant code change you'd like to propose, please start with a | ||
GitHub issue so that we can discuss it. Thanks in advance! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## About Duende.AccessTokenManagement.OpenIdConnect | ||
Duende.AccessTokenManagement.OpenIdConnect is a .NET library that manages OpenId | ||
Connect access tokens in [ASP.NET Core](https://dotnet.microsoft.com/en-us/apps/aspnet) | ||
applications. It will acquire new tokens when old tokens are about to expire, provides conveniences to | ||
automatically use the current token with HTTP clients, and can revoke refresh tokens that are no longer needed. | ||
|
||
## Documentation | ||
Documentation is available [here](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/wiki/web-applications). | ||
|
||
## Related Packages | ||
- Foundational library for claims-based identity, OAuth 2.0 and OpenId Connect: [IdentityModel](https://www.nuget.org/packages/IdentityModel) | ||
- Token management for machine-to-machine workflows in .NET workers: [Duende.AccessTokenManagement](https://www.nuget.org/packages/Duende.AccessTokenManagement) | ||
|
||
## License and Feedback | ||
Duende.AccessTokenManagement.OpenIdConnect is released as open source under the | ||
[Apache 2.0 license](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/blob/main/LICENSE). | ||
[Bug reports, feature requests](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/issues) and | ||
[contributions](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/pulls) are welcome. | ||
If you have an idea for a new feature or significant code change you'd like to propose, please start with a | ||
GitHub issue so that we can discuss it. Thanks in advance! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## About Duende.AccessTokenManagement | ||
Duende.AccessTokenManagement is a .NET library that manages OAuth | ||
access tokens in [.NET workers](https://learn.microsoft.com/en-us/dotnet/core/extensions/workers) | ||
and [ASP.NET Core worker services](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/host/hosted-services). | ||
It will acquire new tokens when old tokens are about to expire and provides conveniences to | ||
automatically use the current token with HTTP clients. | ||
|
||
## Documentation | ||
Documentation is available [here](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/wiki). | ||
|
||
## Related Packages | ||
- Foundational library for claims-based identity, OAuth 2.0 and OpenId Connect: [IdentityModel](https://www.nuget.org/packages/IdentityModel) | ||
- Token management for user-centric flows in [ASP.NET Core](https://dotnet.microsoft.com/en-us/apps/aspnet) | ||
applications: [Duende.AccessTokenManagement.OpenIdConnect](https://www.nuget.org/packages/Duende.AccessTokenManagement.OpenIdConnect) | ||
|
||
## License and Feedback | ||
Duende.AccessTokenManagement is released as open source under the | ||
[Apache 2.0 license](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/blob/main/LICENSE). | ||
[Bug reports, feature requests](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/issues) and | ||
[contributions](https://github.com/DuendeSoftware/Duende.AccessTokenManagement/pulls) are welcome. | ||
If you have an idea for a new feature or significant code change you'd like to propose, please start with a | ||
GitHub issue so that we can discuss it. Thanks in advance! | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters