Phoesion.DevJwt.CLI 0.1.2

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global Phoesion.DevJwt.CLI --version 0.1.2                
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local Phoesion.DevJwt.CLI --version 0.1.2                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Phoesion.DevJwt.CLI&version=0.1.2                
nuke :add-package Phoesion.DevJwt.CLI --version 0.1.2                

Phoesion.DevJwt

Easy JWT authentication for developing and testing.

How to use in your service

  1. Install the Phoesion.DevJwt NuGet package ..

  2. Enable dev-jwt on your JWT authorization services

services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
        .AddJwtBearer(o => o.AddDevJwt(builder.Environment));
  1. Configure in appsetting.Development.json
"Authentication": {
   "Schemes": {
      "Bearer": {
         "ValidAudience": "myApi",
         "ValidIssuer": "phoesion.devjwt"
      }
   }
}

Generate a jwt

  1. Install the dotnet tool
dotnet tool install --global phoesion.devjwt
  1. Generate token using
dotnet devjwt create myApi --email user@mail.com --sub 42

You can now use the token for your requests.

General Information

The AddDevJwt() extension configures an ISecurityTokenValidator that validates the token. When supplying the HostingEnvironment to the extension, it checks that the handler is only added for Development and Testing environments.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
1.1.0 59 11/19/2024
1.0.1 422 11/24/2023
0.2.1 268 4/27/2023
0.2.0 195 4/27/2023
0.1.9 196 4/27/2023
0.1.8 171 4/27/2023
0.1.7 204 4/26/2023
0.1.6 192 4/26/2023
0.1.5 191 4/26/2023
0.1.4 206 4/26/2023
0.1.3 223 4/26/2023
0.1.2 207 4/25/2023