Blazor.Auth
Blazor.Auth copied to clipboard
Blazor authentication package
- Add an ability to reverse proxy requests made to Blazor Server's `{host}/api` to arbitrary WebAPIs. - Expose configuration func to allow intercept and update outbound requests to said WebAPI...
Requires #11 to be completed before anything described here 1. Make user cookies HttpOnly and Secure in order to prevent [XSS attacks](https://www.synopsys.com/glossary/what-is-cross-site-scripting.html) (requires [additional Cookies implementation](https://github.com/BitzArt/Blazor.Cookies/issues/4) for HttpOnly and Secure...
Hello all, I'm encountering a strange problem using Blazor.Auth on a Blazor Server implementation where the access token is not refreshed after expiration. I have the following situation: 1. User...
Logic similar to [this](https://github.com/BitzArt/Blazor.Auth/issues/41#issuecomment-2764559661) could be implemented in the `AuthenticationStateProvider`, notifying all subscribers of an AuthenticationState update on access token expiration.
**Infinite Loop When Calling `AuthenticationStateProvider.GetAuthenticationStateAsync()` in `OnInitializedAsync` with `AuthorizeRouteView` in `Routes.razor`** To reproduce this issue, create a new Blazor Server App with `` in `App.razor`, and add the following code...
It is possible to change AccessToken cookie name?
In my Blazor app, I use OData, so I added a new controller: ``` [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)] [ApiController] public class MyController : ODataController { ... } ``` In program.cs, I...
I don't think this is issue, but some people even my client think is it. When access page for first time, this page will refresh automatically like flicker. when i...
Currently, Blazor.Auth supports Blazor Server and WebAssembly, but it cannot be directly integrated into MAUI Blazor projects. It would be greatly appreciated if the author could adapt Blazor.Auth for use...