Auth0.Core
7.0.0-beta2
Prefix Reserved
See the version list below for details.
dotnet add package Auth0.Core --version 7.0.0-beta2
NuGet\Install-Package Auth0.Core -Version 7.0.0-beta2
<PackageReference Include="Auth0.Core" Version="7.0.0-beta2" />
<PackageVersion Include="Auth0.Core" Version="7.0.0-beta2" />
<PackageReference Include="Auth0.Core" />
paket add Auth0.Core --version 7.0.0-beta2
#r "nuget: Auth0.Core, 7.0.0-beta2"
#:package Auth0.Core@7.0.0-beta2
#addin nuget:?package=Auth0.Core&version=7.0.0-beta2&prerelease
#tool nuget:?package=Auth0.Core&version=7.0.0-beta2&prerelease
Auth0 .NET SDK
| 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. net9.0 was computed. 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 | 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 | net452 is compatible. net46 was computed. 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. |
-
.NETFramework 4.5.2
- Newtonsoft.Json (>= 12.0.3)
-
.NETStandard 2.0
- Newtonsoft.Json (>= 12.0.3)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on Auth0.Core:
| Package | Downloads |
|---|---|
|
Auth0.AuthenticationApi
Auth0 .NET SDK |
|
|
BizDoc.Authentication.Auth0
Auth0 authentication for BizDoc |
|
|
AirMapDotNet
A .NET SDK for the AirMap API. |
|
|
AICapture.OST.Lib
AICapture.io .net core base library. |
|
|
Zymergi.Infrastructure
.NET library for infrastructure integrations — AWS, Auth0, OpenAI, and image processing. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 7.45.1 | 14,916 | 3/26/2026 |
| 7.45.0 | 106,004 | 2/25/2026 |
| 7.44.0 | 156,669 | 1/29/2026 |
| 7.43.1 | 89,053 | 1/15/2026 |
| 7.43.0 | 213,234 | 12/5/2025 |
| 7.42.0 | 411,207 | 10/9/2025 |
| 7.41.0 | 206,968 | 9/15/2025 |
| 7.40.0 | 218,722 | 8/13/2025 |
| 7.39.0 | 465,232 | 7/8/2025 |
| 7.38.0 | 160,033 | 6/23/2025 |
| 7.37.0 | 2,969,727 | 5/30/2025 |
| 7.36.0 | 787,068 | 4/10/2025 |
| 7.35.0 | 163,687 | 3/24/2025 |
| 7.34.0 | 724,535 | 2/19/2025 |
| 7.33.0 | 145,857 | 2/5/2025 |
| 7.32.0 | 547,325 | 1/22/2025 |
| 7.31.0 | 194,861 | 1/8/2025 |
| 7.30.0 | 637,394 | 11/28/2024 |
| 7.29.0 | 554,303 | 11/11/2024 |
| 7.0.0-beta2 | 3,393 | 1/16/2020 |
Version 7.0.0 beta 2
- No longer ensures that IAT (issued at) claims in ID Tokens are in the future to better deal with
the local clock being slow.
Version 7.0.0 beta 1
**Many breaking changes**
A migration guide will be produced while the beta runs and made available before GA. The summary is:
- Authentication SDK includes all-new ID Token Validation which will now validate H256.
- If your app is configured for HS256 and is confidential such as a web server then you will need to
set SigningAlgorithm to `SigningAlgorithm.HS256` on your `AuthenticationApiClient` requests.
- If your app is configured for HS256 and is NOT confidential such as a native client you should
reconfigure your app for RS256 as soon as possible.
- If your app is configured for RS256 no changes are required. JWKS caches are now only valid for
10 minutes and will not cache the JWKS keys indefinitely.
- Improved testing and mocking support. You can now mock `IAuthenticationConnection` /
`IManagementConnection` classes to provide local unit-testing functionality for
`AuthenticationApiClient` and `ManagementApiClient` respectively. Each has just two methods that
can be mocked - one for `GET` and one for other HTTP verbs.
- Many classes moved namespace especially ones that were in `Core` as part of the long-term plan to
only have AuthenticationApi and ManagementApi packages. Visual Studio should be able to suggest
where classes you were using now reside.
- Disposal is now more consistent. If `AuthenticationApiClient` or `ManagementApiClient` create a
connection for you they will manage its lifecycle. If you pass in a connection then it will be your
responsibility to manage it. This also applies to how `HttpClientAuthenticationConnection` and
`HttpClientManagementConnection` will only dispose of a `HttpClient` they create and not ones they
are given.
- Rate Limiting information is now only available on the `RateLimitApiException` which is raised when
the rate limit is exceeded.
- `ApiException` is now `ErrorApiException`. If you use the status code or error message on exception
you will need to switch to catching the later. The former is now a base class that does not have
this information but ensures any old catch `ApiException` will continue to catch rate limit
exceptions which also now inherit from this class.
- Microsoft recommends `HttpClient` is reused as much as possible. Therefore you should use
dependency injection or inversion of control to ensure that either a single instance of
`AuthenticationApiClient` / `ManagementApiClient` or its connections `HttpClientXConnection` are
created to ensure sharing. These classes are now thread-safe. You can additionally share
`HttpClient` objects between them if you wish by injecting it into the `HttpClientXConnection`
constructor.
Version 6.5.5
- Signup API result now handles custom databases returning variations of "id" name
- Fix EnrollmentAuthMethod.Authenticator enum name
- ClientBase now has property for `initiate_login_uri`
Version 6.5.4
- SECURITY FIX for CVE-2019-16929. See
https://github.com/auth0/auth0.net/blob/master/SECURITY-NOTICE.md#idtokenvalidator-public for more details.
Version 6.5.3
WARNING: If you generate tokens in your project via System.IdentityModel.Tokens.Jwt
please read the important notice at https://github.com/auth0/auth0.net/issues/300
- Upgraded System.IdentityModel.Tokens.Jwt to 5.5 to fix incompatible kid
- Upgraded Microsoft.IdentityModel.Protocols.OpenIdConnect to 5.5
- Add ClientId to VerifyEmailJobRequest
- Updated all test dependencies (xunit, FluentAssertions, .NET Test SDK)
- Removed unused Console Workbench project
Version 6.5.2
- UserClient.GetEnrollments now correctly passes user id.
Version 6.5.1
- User and role permissions endpoints in UsersClient and RolesClient paging fix.
Version 6.5.0
- Assembly is now strong-name-signed so it can be used by other strong-name-signed packages.
- NOTE: This is code signing only using a non-secret key. It is not authenticode or tamper protection.
- User and role permissions endpoints in UsersClient and RolesClient now correctly honoring paging.
- User model optional fields (CreatedAt, UpdatedAt, LastLogin) are now nullable.
Version 6.4.0
- TenantSettings lifetimes are now double not integer.
- Added various Guardian-related endpoints on UserClient.
Version 6.3.0
- Missing Tenant settings now available (device flow, Guardian MFA, Change Password, flags etc.
Version 6.2.0
- Added client_id to GetDeviceCredentials response
- Added various user properties to UserUpdateRequest
Version 6.1.0
- New user permission endpoints added to UsersClient
- New role permission endpoints added to RolesClient
- AuthenticationApiClient now implements IDisposable to dispose ApiConnection and HttpClient
- Added various new and missing properties to Resource Servers (ResourceServerBase)
Version 6.0.0
- New GuardianClient for managing /guardian endpoints
- New RolesClient for managing /roles endpoints
- PasswordChangeTicket now has IncludeEmailInRedirect and MailEmailAsVerified
- ApiConnection now has Dispose to dispose the HttpClient it creates
- ManagementApiClient now has Dispose to dispose the ApiConnection it creates
- XML documentation tweaks
- Dependencies updated
BREAKING CHANGES
See our migration guide at https://github.com/auth0/auth0.net/blob/prepare-6.0.0/docs-source/migrating.md
- All I*Client interfaces have been removed so adding endpoints is no longer breaking
- IManagementApi interface was removed so adding new clients is no longer breaking
- All non-paging GetAll methods have been removed
- DiagnosticsHeader/DiagnosticsComponent are no longer available