FriendlySpork

Extensions to integrate Auth0 .NET SDK with ASP.NET Core.


Keywords
auth0, aspnet, extensions
License
MIT
Install
Install-Package FriendlySpork -Version 0.0.2

Documentation

friendly-spork

Extensions to integrate Auth0 .NET SDK with ASP.NET Core.

Status

Build status

Changelog

Installation/Usage

  1. Install the FriendlySpork package from NuGet.

  2. Add the following code in your dependency injection logic (Startup.ConfigureServices in ASP.NET Core):

services.AddAuth0ManagementApi(options =>
{
    options.Domain = "your Auth0 domain";
    options.ClientId = "client id";
    options.ClientSecret = "client secret";
    options.ReuseAccessToken = false;
});

Why FriendlySpork?

GitHub provided the name when creating the repository.