Skip to content

Latest commit

 

History

History

authentication

Authentication (4)

  • Authentication - JWT

    This sample shows the usage of the simplified authentication and authorization via builder.AddAuthentication().AddJwtBearer();.

  • Authentication - Cookie

    This sample shows the usage of the simplified authentication and authorization via builder.AddAuthentication().AddCookie();.

  • Authentication - Mixed

    This sample shows how to use both JWT and Cookie authentications in the same application.

  • Authentication - simplified JWT bearer token authentication

    This sample shows the usage of the simplified authentication and authorization using webapi template via builder.AddAuthentication().AddJwtBearer();.

  • Authentication - Identity

    This sample shows the usage of authentication using Identity API using webapi template via builder.ServicesAddIdentityApiEndpoints<>().AddEntityFrameworkStores<>(); .

dotnet8