2.1.1 • Published 19 days ago

@bizdoc/azure v2.1.1

Weekly downloads
-
License
-
Repository
-
Last release
19 days ago

Azure for BizDoc

Azure Active Directory authentication for BizDoc.

This library expects BizDoc.Core.Azure Nuget on the server side.

Setting up

npm i @bizdoc/azure

In app.module:

import { AzureModule } from '@bizdoc/core';

imports: [
BizDocModule.forRoot(...),
AzureModule.forRoot({
  clientId: "{client-id-here}"
})
]

Server side

Create Azure application.

startup.cs:

  services.AddBizDoc(...).
    AddAzureActiveDirectory(o => {
      options.ApplicationIdURI = "api://{domain-here}/{app-id-here}";
      options.ClientId = "{client-id}";
      options.TenantId = "{tenent-id}";
      options.ClientSecret = "{client-secret}";      
    }).UseIdentityProvider();
2.1.1

19 days ago

2.1.0

2 months ago

2.0.3

2 months ago

2.0.2

2 months ago

2.0.1

2 months ago

2.0.0

2 months ago

1.15.1

12 months ago

1.15.0

2 years ago

1.13.1

2 years ago

1.13.0

2 years ago