BizDoc.Authentication.Azure 8.75.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package BizDoc.Authentication.Azure --version 8.75.5
                    
NuGet\Install-Package BizDoc.Authentication.Azure -Version 8.75.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BizDoc.Authentication.Azure" Version="8.75.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BizDoc.Authentication.Azure" Version="8.75.5" />
                    
Directory.Packages.props
<PackageReference Include="BizDoc.Authentication.Azure" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BizDoc.Authentication.Azure --version 8.75.5
                    
#r "nuget: BizDoc.Authentication.Azure, 8.75.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=BizDoc.Authentication.Azure&version=8.75.5
                    
Install BizDoc.Authentication.Azure as a Cake Addin
#tool nuget:?package=BizDoc.Authentication.Azure&version=8.75.5
                    
Install BizDoc.Authentication.Azure as a Cake Tool

Azure for BizDoc

Add Azure authentication and storage for BizDoc.

dotnet add package BizDoc.Authentication.Azure

program.cs

using System.Security.Claims;

builder.Services.AddBizDoc(options => {
    options.IdentityClaimType = ClaimTypes.Name;
}).
	AddAzure(options => {
        options.ApplicationId = "{application-id-here}";
        options.TenantId = "{tenant-id-here}";
        options.ClientId = "{client-id-here}";
        options.ClientSecret = "{client-secret-here}";

        options.SystemGroupName = "{system-id-here}";
    });
s
app.UseAzure();

You can use the appsettings.json file.

{
  "Azure": {
    "ApplicationId": "{application-id-here}",
    "TenantId": "{tenant-id-here}",
    "ClientId": "{client-id-here}",
    "ClientSecret": "{client-secret-here}",
    "SystemGroupName": "{system-id-here}"
  }
}

And provide the section name to AddAzure().

builder.Services.AddBizDoc(options => {
    ...
}).
	AddAzure(builder.Configuration.GetSection("Azure"), configure => {
        ...
    });

The ApplicationId should be set to the application Object ID and the ClientId to the Application (client) ID.

IdentityClaimType needs to be set to one of:

Claim Usage
ClaimConstants.ObjectId
ClaimTypes.Name or ClaimTypes.Upn
ClaimTypes.Sid
ClaimTypes.Email
AzureClaimTypes.EmployeeId
AzureClaimTypes.OnPremisesSecurityIdentifier
AzureClaimTypes.OnPremisesSamAccountName
AzureClaimTypes.OnPremisesUserPrincipalName

AzureClaimTypes (EmployeeId, etc.) are supported only on SAML. Add Attributes & Claims matching the claim name.

The SystemGroupName maps to BizDoc admin group.

Use Password-Based Single sign-on

	AddAzure(options => {
        ...
    }, configure => 
    configure
        .UsePasswordBasedSignOn()
        .UseIdentityProvider());

Uee SAML

Set Reply URL to /signin-oidc, and Logout Url to /signout-callback-oidc.

	AddAzure(options => {
        ...
        options.ClientCertificates = [ new CertificateDescription {
                          SourceType= CertificateSource.StoreWithThumbprint,
                          CertificateStorePath= "CurrentUser/My",
                         CertificateThumbprint = "{certificate-thumbprint-here}"
                    } ];
    }, configure => 
    configure
        .UseSAML()
        .UseIdentityProvider());

Set mode to SAML in app.module.ts.

You can use the appsettings.json file.

{
  "Azure": {
    "ClientCertificates": [
      {
        "SourceType": "StoreWithThumbprint",
        "CertificateStorePath": "CurrentUser/My",
        "CertificateThumbprint": "{certificate-thumbprint-here}"
      }
    ],
    ...
  }
}

Download certificate and set CertificateThumbprint.

Use Actionable Messages

UseActionableMessages();

/api/office/take_action

Use blob storage

Set a storage for attachments.

AddBizDoc().
    AddAzure(
        options => ..., 
        configure => configure
            .UseBlobFileStore(o => o.ConnectionString = "{connection-string-here}"));

Use mail

Set EmailAddress.

builder.Services.AddBizDoc().
    AddAzure(
        options => ..., 
        configure => configure
            .UseEmailer() /* replaces SMTP */
            .UseEMailFeedback(o => o.EmailAddress = "{bizdoc-address-here}"));

app.UseBizDoc().UseEMailFeedback();

Configure

Check ID tokens and switch Allow public client flows to yes.

API Permissions

  • User.Read.All
  • UserTeamwork.Read.All
  • Group.Read.All
  • GroupMember.Read.All
  • Organization.Read.All
  • Place.Read.All
  • Contacts.Read
  • OrgContact.Read.All
  • Sites.Read.All
  • Team.ReadBasic.All
  • TeamMember.Read.All

In addition, Mail.ReadWrite and Mail.Send is required when UseEmailer() or UseMailFeedback().

Workflow

Manager, document owner manager in Azure.

Directory Role.

Widgets

My Group Peers.

My Team Peers.

Direct Reporters Pending.

Teams Performance.

Groups Performance.

Departments Performance.

Administrative Units Performance.

Source

Name Usage
DirectoryGroups
DirectoryRoles
BookingBusinesses
Contacts
DirectoryRoles
Places
Organizations
AdministrativeUnits
EducationSchools
EducationClasses
Sites
Teams
Plans
Departments User department

Attributes

Name Usage
OwnerCountry
OwnerTeamworkData require property name
OwnerEmployeeOrgData require property name
OwnerAdditionalData require property name
OwnerPlannerData require property name
OwnerEmployeeId
OwnerEmployeeType
OwnerDepartment
OwnerEmployeeDivision
OwnerEmployeeCostCenter
OwnerMySite

Rules

Name Usage
OwnerDepartment
OwnerEmployeeDivision
OwnerEmployeeCostCenter
OwnerEmployeeType
OwnerCompanyName
UserEmployeeDivision
UserEmployeeCostCenter
UserEmployeeType
OwnerTeams
UserAdditionalData require property name
UserTeamworkAdditionalData require property name
OwnerTeamworkAdditionalData require property name
UserEmployeeOrgData require property name
OwnerAdditionalData require property name

Resolvers

Name Usage
DivisionResolver
CostCenterResolver

Angular

Install the module.

npm i @bizdoc/azure

Import the module in app.module.

imports: [AzureModule.forRoot({
    clientId: '{client-id-here}',
    mode: 'SAML|Password-Based',
})]
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on BizDoc.Authentication.Azure:

Package Downloads
BizDoc.Social.Teams

Teams for BizDoc

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.78.5 190 4/16/2025
8.76.5 144 3/27/2025
8.75.5 144 3/18/2025
8.74.5 155 3/12/2025
8.73.5 156 3/11/2025
8.73.4 97 3/2/2025
8.73.3 100 2/27/2025
8.71.3 108 2/15/2025
8.71.2 115 2/13/2025
8.70.2 103 2/13/2025
8.69.2 97 2/6/2025
8.68.2 104 2/2/2025
8.67.2 103 1/20/2025
8.66.2 107 1/5/2025
8.65.2 126 12/15/2024
8.63.2 112 12/5/2024
8.62.2 111 12/2/2024
8.61.2 106 11/21/2024
8.60.2 105 11/18/2024
8.59.2 107 11/13/2024
8.59.1 104 10/17/2024
8.58.1 103 10/13/2024
8.57.1 115 10/8/2024
8.56.0 142 9/17/2024
8.54.0 119 8/28/2024
8.53.0 116 8/26/2024
8.52.0 94 7/29/2024
8.50.0 129 7/10/2024
8.49.4 138 6/23/2024
8.47.4 118 6/9/2024
8.46.3 126 5/28/2024
8.46.2 130 5/26/2024
8.45.2 107 5/21/2024
8.45.1 120 5/19/2024
8.44.4 135 4/23/2024
8.43.3 129 4/14/2024
8.42.3 136 4/8/2024
8.41.3 146 4/6/2024
8.41.2 138 3/2/2024
8.41.0 124 3/1/2024
8.40.5 123 2/29/2024
8.40.4 121 2/29/2024
8.40.2 121 2/29/2024
8.40.1 117 2/28/2024
8.40.0 124 2/28/2024
8.39.6 115 2/28/2024
8.39.5 129 2/27/2024
8.38.5 138 2/20/2024
8.37.4 157 2/7/2024
8.36.4 137 2/2/2024
8.35.4 145 1/17/2024
8.35.3 151 1/12/2024
7.35.3 135 1/6/2024
7.34.5 164 12/23/2023
7.34.3 131 12/30/2023
7.34.2 138 12/30/2023
7.34.1 136 12/29/2023
7.33.5 153 12/12/2023
7.33.4 142 11/28/2023
7.32.4 132 11/26/2023
7.32.3 141 11/23/2023
7.31.3 132 11/22/2023
7.30.3 121 11/22/2023
7.30.2 132 11/21/2023
7.30.1 132 11/21/2023
7.30.0 140 11/17/2023
7.28.0 136 11/15/2023
7.27.0 134 11/9/2023
7.25.0 140 11/5/2023
7.23.3 147 10/30/2023
7.22.3 155 10/21/2023
7.20.3 161 9/26/2023
7.19.3 148 9/23/2023
7.18.3 152 9/17/2023
7.17.3 164 9/10/2023
7.16.3 168 9/6/2023
7.15.3 161 8/31/2023
7.14.3 163 8/22/2023
7.13.3 166 8/14/2023
7.12.3 166 7/28/2023
7.10.3 177 7/9/2023
7.9.3 206 7/6/2023
7.8.3 473 6/24/2023
7.7.1 181 6/18/2023
7.6.1 181 6/13/2023
7.5.1 191 6/8/2023
7.5.0 181 5/28/2023
7.4.0 177 5/22/2023
7.3.0 184 5/4/2023
7.0.1 225 3/30/2023
7.0.0 353 11/28/2022
6.8.9 365 11/8/2022
6.8.8 393 11/6/2022
6.8.7 384 10/31/2022
6.8.6 398 10/27/2022
6.8.5 433 10/24/2022
6.8.4 477 10/20/2022
6.8.3 454 10/20/2022