OAuth2Authenticator 5.1.0

dotnet add package OAuth2Authenticator --version 5.1.0
                    
NuGet\Install-Package OAuth2Authenticator -Version 5.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OAuth2Authenticator" Version="5.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OAuth2Authenticator" Version="5.1.0" />
                    
Directory.Packages.props
<PackageReference Include="OAuth2Authenticator" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OAuth2Authenticator --version 5.1.0
                    
#r "nuget: OAuth2Authenticator, 5.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package OAuth2Authenticator@5.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OAuth2Authenticator&version=5.1.0
                    
Install as a Cake Addin
#tool nuget:?package=OAuth2Authenticator&version=5.1.0
                    
Install as a Cake Tool

OAuth2Authenticator

ci

OAuth2Authenticator is an OAuth client to simplify the process of retrieving and managing OAuth tokens. It supports multiple grant types and provides built-in handlers for token refresh and expiration.

Nuget Package

Currently supported grant types

Setup

Installation

Install via NuGet:

dotnet add package OAuth2Authenticator

Initialize

Initialize the client service in the application startup.

public void ConfigureServices(IServiceCollection services)
{
    services.AddOAuth2Authenticator();
}

Usage

OAuth2Authenticator

This class holds the request logic for all OAuth2 grant types. Injectable over the IOAuth2Authenticator interface.

private readonly IOAuth2Authenticator _authenticator; // Retrieve this service via dependency injection.

await _authenticator.PasswordGrant(url, clientId, username, password);

await _authenticator.RefreshTokenGrant(url, clientId, refreshToken);

await _authenticator.ClientCredentialsGrant(url, clientId, clientSecret);

Returns an OAuth2TokenResponse or null. Usage examples for manual token handling can be found in the OAuth2TokenHandler.cs.

OAuth2TokenHandler

This class holds common logic which is needed for token handling. Injectable over the IOAuth2TokenHandler interface.

RefreshHandler

The refresh handler checks whether the access token is about to expire or has already expired and automatically attempts to renew the token with the refresh token. If a renewal with the refresh token is not possible, a new token is retrieved via the specified callback. The handler always attempts to return a valid token.

private readonly IOAuth2TokenHandler _handler; // Retrieve this service via dependency injection.
private static OAuth2TokenResponse token; // Save the last token somewhere static or distributed.

token = await _handler.RefreshHandler(
    token,
    url,
    clientId,
    async () =>
    {
        // Executed to obtain a new token if an refresh was not possible or none exists yet.
        return await _authenticator.PasswordGrant(url, clientId, username, password);
    });

Returns an OAuth2TokenResponse or null.

ClientCredentialsHandler

The client credentials handler checks whether the access token is about to expire or has already expired and automatically requests a new token.

private readonly IOAuth2TokenHandler _handler; // Retrieve this service via dependency injection.
private static OAuth2TokenResponse token; // Save the last token somewhere static or distributed.

token = await _handler.ClientCredentialsHandler(
    token,
    url,
    clientId,
    clientSecret);

Returns an OAuth2TokenResponse or null.

OAuth2TokenResponseExtension

Checks if the token request was successful.

token.Successful()

Checks that the token is not expired.

token.Valid()

License

Apache 2.0

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.1.0 13 8/12/2025
5.0.0 622 6/3/2025
4.0.1 228 4/14/2025
4.0.0 297 2/13/2025
3.9.2 135 2/5/2025
3.9.1 1,734 1/8/2025
3.9.0 1,016 11/12/2024
3.8.1 128 11/12/2024
3.8.0 144 11/11/2024
3.7.2 1,500 6/18/2024
3.7.1 142 6/18/2024
3.7.0 147 6/18/2024
3.6.0 139 5/15/2024
3.5.0 2,645 12/6/2023
3.4.1 239 6/19/2023
3.4.0 4,083 2/17/2023
3.3.1 1,578 11/9/2022
3.3.0 1,535 9/19/2022
3.2.1 973 9/6/2022
3.2.0 1,831 7/26/2022
3.1.0 1,146 7/11/2022
3.0.0 1,343 5/30/2022
2.0.2 519 5/24/2022
2.0.1 462 5/24/2022
2.0.0 470 5/24/2022
1.0.0 485 5/23/2022