Blazor.BFF.OpenIDConnect.Template
1.0.4
See the version list below for details.
dotnet new install Blazor.BFF.OpenIDConnect.Template::1.0.4
Blazor.BFF.OpenIDConnect.Template
This template can be used to create a Blazor WASM application hosted in an ASP.NET Core Web app using OpenID Connect to authenticate using the BFF security architecture. (server authentication) This removes the tokens form the browser and uses cookies with each HTTP request, response. The template also adds the required security headers as best it can for a Blazor application.
Features
- WASM hosted in ASP.NET Core 6
- BFF with Azure AD using Microsoft.Identity.Web
- OAuth2 and OpenID Connect OIDC
- No tokens in the browser
Using the template
install
dotnet new -i Blazor.BFF.OpenIDConnect.Template
run
dotnet new blazorbffoidc -n YourCompany.Bff
Use the -n
or --name
parameter to change the name of the output created. This string is also used to substitute the namespace name in the .cs file for the project.
Setup after installation
Add the OpenID Connect App registration settings
{
"OpenIDConnectSettings": {
"Authority": "--your-authority--",
"ClientId": "--client ID--",
"ClientSecret": "--client-secret (user secrets)--"
},
uninstall
dotnet new -u Blazor.BFF.OpenIDConnect.Template
Credits, Used NuGet packages + ASP.NET Core 6.0 standard packages
- NetEscapades.AspNetCore.SecurityHeaders
- IdentityModel.AspNetCore
Links
https://github.com/andrewlock/NetEscapades.AspNetCore.SecurityHeaders
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.5 | 121 | 10/7/2024 |
3.0.4 | 198 | 8/14/2024 |
3.0.3 | 1,970 | 2/1/2024 |
3.0.2 | 1,000 | 1/14/2024 |
3.0.1 | 1,445 | 12/31/2023 |
3.0.0 | 1,905 | 11/26/2023 |
2.1.3 | 4,360 | 11/3/2023 |
2.1.2 | 3,205 | 10/25/2023 |
2.0.4 | 2,564 | 8/6/2023 |
2.0.3 | 4,459 | 7/8/2023 |
2.0.2 | 3,587 | 3/11/2023 |
2.0.1 | 1,580 | 1/22/2023 |
2.0.0 | 3,706 | 12/2/2022 |
1.2.8 | 9,640 | 9/23/2022 |
1.2.7 | 8,621 | 8/26/2022 |
1.2.6 | 3,071 | 8/12/2022 |
1.2.5 | 3,057 | 8/7/2022 |
1.2.4 | 1,191 | 8/7/2022 |
1.2.3 | 7,359 | 7/9/2022 |
1.2.2 | 6,150 | 6/19/2022 |
1.2.1 | 7,935 | 5/21/2022 |
1.2.0 | 460 | 5/20/2022 |
1.1.0 | 8,003 | 3/20/2022 |
1.0.8 | 9,015 | 2/11/2022 |
1.0.7 | 4,625 | 1/23/2022 |
1.0.6 | 960 | 1/21/2022 |
1.0.5 | 456 | 1/18/2022 |
1.0.4 | 588 | 1/17/2022 |
1.0.3 | 1,308 | 1/9/2022 |
1.0.1 | 1,629 | 1/4/2022 |
1.0.0 | 2,387 | 12/25/2021 |
removed unused files, removed launchsettings from client