AuthenticationWithClientSideBlazor icon indicating copy to clipboard operation
AuthenticationWithClientSideBlazor copied to clipboard

Companion code sample for my blog post - Authentication with client-side Blazor using WebAPI and ASP.NET Core Identity

Results 13 AuthenticationWithClientSideBlazor issues
Sort by recently updated
recently updated
newest added

Bumps [Microsoft.AspNetCore.Authentication.JwtBearer](https://github.com/aspnet/AspNetCore) from 3.1.0-preview3.19555.2 to 3.1.18. Release notes Sourced from Microsoft.AspNetCore.Authentication.JwtBearer's releases. .NET Core 3.1.18 Release .NET Core 3.1.17 Release .NET Core 3.1.16 Release .NET Core 3.1.15 Release .NET Core...

dependencies

The sample project no longer works. It would be nice to get a workable example that will operate with the current released version of Blazor WebAssembly. Though, I must admit...

This version works with Net Core 5. It is based on a new template, with the changes applied as described in the blog. It specifies ` [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)] `...

When logging in to obtain an authToken, you need to set the Blazor login expiration based on the authToken.AuthToken is invalid, login must also fail, need to automatically jump to...

I'm not sure if this is a .Net 3.1 vs 5 issue. However, the Post call in the current code uses `PostJsonAsync`. I believe the correct call is `PostAsJsonAsync`. Also...

Hey, I think this project needs a update since many things change since last commit and this is really covers an important topic. Client project does not have Startup.cs now....

Good morning, The project there doesn't show missing dependencies. After delete the folder bin and object in 3 projects I run the project and it shows errors as shown in...

Hi Chris, Local storage is implemented for storing auth token. is there any way to interact with cookies in blazor to achieve the same result ?

Hello Chris sanity, Will be very helpful if you can update a feature of handling Access and refresh token Access token is short lived and when it expires user is...

Hi Chris, thanx for the example. Could you please make another sample which uses this Identity provider+PostgreSQL https://github.com/Robynhu/AspNetCore.Identity.PostgreSQL Also, it does not use EF, what is +.