Blazor.BFF.AzureAD.Template 1.0.10

There is a newer version of this package available.
See the version list below for details.
dotnet new install Blazor.BFF.AzureAD.Template::1.0.10
This package contains a .NET Template Package you can call from the shell/command line.

Blazor.BFF.AzureAD.Template

.NET NuGet Status Change log

This template can be used to create a Blazor WASM application hosted in an ASP.NET Core Web app using Azure AD and Microsoft.Identity.Web 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.AzureAD.Template

run

dotnet new blazorbffaad -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 Azure AD App registration settings

{
  "AzureAd": {
    "Instance": "https://login.microsoftonline.com/",
    "Domain": "[Enter the domain of your tenant, e.g. contoso.onmicrosoft.com]",
    "TenantId": "[Enter 'common', or 'organizations' or the Tenant Id (Obtained from the Azure portal. Select 'Endpoints' from the 'App registrations' blade and use the GUID in any of the URLs), e.g. da41245a5-11b3-996c-00a8-4d99re19f292]",
    "ClientId": "[Enter the Client Id (Application ID obtained from the Azure portal), e.g. ba74781c2-53c2-442a-97c2-3d60re42f403]",
    "ClientSecret": "[Copy the client secret added to the app from the Azure portal]",
    "ClientCertificates": [
    ],
    // the following is required to handle Continuous Access Evaluation challenges
    "ClientCapabilities": [ "cp1" ],
    "CallbackPath": "/signin-oidc"
  },

Add the scopes for the downstream API if required

  "DownstreamApi": {
    "Scopes": "User.ReadBasic.All user.read"
  },

uninstall

dotnet new -u Blazor.BFF.AzureAD.Template

Credits, Used NuGet packages + ASP.NET Core 6.0 standard packages

  • NetEscapades.AspNetCore.SecurityHeaders
  • IdentityModel.AspNetCore

https://github.com/AzureAD/microsoft-identity-web

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.1.1 1,366 2/1/2024
3.1.0 1,319 1/14/2024
3.0.2 1,087 12/31/2023
3.0.1 1,654 12/7/2023
2.2.0 2,122 11/3/2023
2.1.0 7,933 6/22/2023
2.0.2 1,459 3/11/2023
2.0.1 1,157 1/22/2023
2.0.0 1,807 12/3/2022
1.2.7 3,393 9/23/2022
1.2.6 6,238 8/12/2022
1.2.5 1,762 8/7/2022
1.2.4 3,965 7/9/2022
1.2.3 6,719 5/22/2022
1.2.2 439 5/22/2022
1.2.1 1,751 5/20/2022
1.2.0 469 5/20/2022
1.1.0 5,456 3/20/2022
1.0.10 4,096 3/5/2022
1.0.9 6,276 2/11/2022
1.0.8 3,296 1/23/2022
1.0.7 1,090 1/21/2022
1.0.6 539 1/17/2022
1.0.5 2,054 1/9/2022
1.0.4 1,472 1/4/2022
1.0.2 7,549 12/9/2021
1.0.0 602 11/30/2021

Update nuget packages