OAuth2Authenticator 3.7.1
See the version list below for details.
dotnet add package OAuth2Authenticator --version 3.7.1
NuGet\Install-Package OAuth2Authenticator -Version 3.7.1
<PackageReference Include="OAuth2Authenticator" Version="3.7.1" />
paket add OAuth2Authenticator --version 3.7.1
#r "nuget: OAuth2Authenticator, 3.7.1"
// Install OAuth2Authenticator as a Cake Addin #addin nuget:?package=OAuth2Authenticator&version=3.7.1 // Install OAuth2Authenticator as a Cake Tool #tool nuget:?package=OAuth2Authenticator&version=3.7.1
OAuth2Authenticator
OAuth2 client for obtaining and refreshing of access tokens.
Currently supported grant types
Setup
Initialize the client service in the application startup.
public void ConfigureServices(IServiceCollection services)
{
services.InitOAuth2Authenticator();
}
Usage
OAuth2Authenticator
This class holds the request logic for all OAuth2 grant types. Injectable over the IOAuth2Authenticator
interface.
private readonly IOAuth2Authenticator _authenticator;
await _authenticator.PasswordGrant(url, clientId, username, password);
await _authenticator.RefreshTokenGrant(url, clientId, refreshToken);
await _authenticator.ClientCredentialsGrant(url, clientId, clientSecret);
After the request, a OAuth2TokenResponse
or null
returns.
OAuth2TokenHandler
This class holds common logic which is needed for token handling. Injectable over the IOAuth2TokenHandler
interface.
private readonly IOAuth2TokenHandler _handler;
await _handler.RefreshHandler(token, url, clientId, Func<...> /*To get a new token*/, threshold));
OAuth2TokenResponseExtension
Checks if the token request was successful.
token.Successful()
Checks that the token is not expired.
token.Valid()
API Reference
Product | Versions 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 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Extensions.Http (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.1)
- Newtonsoft.Json (>= 13.0.3)
- System.Net.Http.Json (>= 8.0.0)
- System.Text.Json (>= 8.0.3)
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 |
---|---|---|
3.9.0 | 199 | 11/12/2024 |
3.8.1 | 70 | 11/12/2024 |
3.8.0 | 81 | 11/11/2024 |
3.7.2 | 1,414 | 6/18/2024 |
3.7.1 | 100 | 6/18/2024 |
3.7.0 | 109 | 6/18/2024 |
3.6.0 | 100 | 5/15/2024 |
3.5.0 | 2,629 | 12/6/2023 |
3.4.1 | 199 | 6/19/2023 |
3.4.0 | 4,028 | 2/17/2023 |
3.3.1 | 1,528 | 11/9/2022 |
3.3.0 | 1,479 | 9/19/2022 |
3.2.1 | 920 | 9/6/2022 |
3.2.0 | 1,774 | 7/26/2022 |
3.1.0 | 1,083 | 7/11/2022 |
3.0.0 | 1,281 | 5/30/2022 |
2.0.2 | 450 | 5/24/2022 |
2.0.1 | 401 | 5/24/2022 |
2.0.0 | 412 | 5/24/2022 |
1.0.0 | 423 | 5/23/2022 |