3.0.0 • Published 10 months ago

@bizdoc/azure v3.0.0

Weekly downloads
-
License
-
Repository
-
Last release
10 months 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();
3.0.0

10 months ago

2.1.1

1 year ago

2.1.0

1 year ago

2.0.3

1 year ago

2.0.2

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.15.1

2 years ago

1.15.0

3 years ago

1.13.1

3 years ago

1.13.0

3 years ago