BizDoc.Authentication.Okta 8.5.13

dotnet add package BizDoc.Authentication.Okta --version 8.5.13
NuGet\Install-Package BizDoc.Authentication.Okta -Version 8.5.13
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.Okta" Version="8.5.13" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BizDoc.Authentication.Okta --version 8.5.13
#r "nuget: BizDoc.Authentication.Okta, 8.5.13"
#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.
// Install BizDoc.Authentication.Okta as a Cake Addin
#addin nuget:?package=BizDoc.Authentication.Okta&version=8.5.13

// Install BizDoc.Authentication.Okta as a Cake Tool
#tool nuget:?package=BizDoc.Authentication.Okta&version=8.5.13

Okta for BizDoc

BizDoc supports Okta for both authentication and authorization, in one of two configurations: server flow or client flow.

Server flow redirects unauthorized users to Okta sign-in page on Okta domain, and handles the redirect. Client flow prompts unauthorized users for credentials in an hosted widget, and negotiate with Okta on the background.

  1. For both modes, install BizDoc Nuget package:
dotnet add package BizDoc.Core.Okta
  1. Add Okta application. If using server mode, choose Web Application. If using client mode, choose ODIC - OpenID Connect, and select SPA.

Okta sign-in redirect url should match "/authorization-code/callback" on server mode, and no path for client mode.

Create an API Token to allow BizDoc to retrieve users information.

  1. In startup.cs, add Okta service.

For server flow, use AddOktaRedirect:

AddBizDoc(o=> {
    o.ApplicationUri = "https://app-domain";
  })
  .AddOktaServer(o=> {
    o.ApiToken = "api-token";
    o.Domain = "domain-name";
    o.ClientId = "client-id";
    o.ClientSecret = "client-secret";
  });
  ...
UseBizDoc().
  .UseOktaServer();

For client mode, use AddOkta:

AddBizDoc(...)
  .AddOkta(o=> {
    o.ApiToken = "api-token";
    o.Domain = "domain-name";
  }).
    UseIdentityProvider();

The UseIdentityProvider() method registers an identity provider which retrieve user information from Okta. To use a different provider, while still authenticating via Okta, see Implementing Identity Provider.

  1. Client mode only, install Angular package:
npm i @bizdoc/okta

Add Okta configuration in Angular app.module:

OktaModule.forRoot({
  domain: 'domain-name',
  clientId: 'client-id'  
})

Roles

In order to map user groups to BizDoc roles for authorization purposes, add a new claim to Okta Authorization Server with the following specifications.

Property Value
Name bizdoc.roles
Include in token type ID Token
Value type Groups
Filter Matches regex, .*
Include in Any scope
System

Add an attribute to either application profile or all profiles and set its type to boolean. Add a claim in API server that map to the profile attribute you created.

Property Value
Name bizdoc.admin
Include in token type ID Token
Value type Expression
Value user.{attr-name-here}

Types

Groups.

Roles.

Widgets

Staff Performance, current user is manager or sibling uner same manager.

Staff Pending, current user is manager.

Groups Performance, selected groups, or current user groups.

Departments Performance. User profile Department.

Divisions Performance. User profile Division.

Cost Centers Performance. User profile CostCenter.

Organizations Performance. User profile Organization.

Attributes

Implicit user attributes for analysis axes.

Name Usage
CostCenter
Department
Division
Organization
EmployeeNumber
Owner Additional Property PropertyName required.

A type must be set for attributes in Architecture tool to enable the analysis to map to an axis.

Rules

User attribues available within rule expression.

Name Usage
CostCenter
Department
Division
Organization
User Additional Property PropertyName required.
Owner Additional Property PropertyName required.

Workflow

Manager.

GroupRule.

API

documentation

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
8.5.13 65 4/23/2024
8.4.13 87 2/22/2024
8.4.12 81 2/20/2024
8.4.11 88 2/7/2024
8.4.10 79 2/2/2024
8.4.9 90 1/18/2024
8.4.8 88 1/12/2024
7.4.8 110 1/1/2024
7.4.7 105 1/1/2024
7.4.6 102 1/1/2024
7.4.5 114 12/31/2023
7.4.4 152 11/26/2023
7.4.3 113 11/22/2023
7.4.2 107 11/22/2023
7.3.2 123 8/14/2023
7.2.2 154 6/24/2023
7.1.2 136 6/2/2023
7.1.1 128 5/11/2023
7.1.0 131 5/4/2023
7.0.2 173 4/11/2023
7.0.1 197 3/30/2023
7.0.0 287 11/28/2022
6.8.11 309 11/8/2022
6.8.10 321 11/6/2022
6.8.8 334 10/31/2022
6.8.7 335 10/28/2022
6.8.6 342 10/27/2022
6.8.5 341 10/27/2022
6.8.4 370 10/24/2022
6.8.3 402 10/20/2022
6.8.2 386 10/20/2022