Arc4u.Standard.OAuth2.AspNetCore 8.2.0-preview20

Prefix Reserved
This is a prerelease version of Arc4u.Standard.OAuth2.AspNetCore.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Arc4u.Standard.OAuth2.AspNetCore --version 8.2.0-preview20
                    
NuGet\Install-Package Arc4u.Standard.OAuth2.AspNetCore -Version 8.2.0-preview20
                    
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="Arc4u.Standard.OAuth2.AspNetCore" Version="8.2.0-preview20" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Arc4u.Standard.OAuth2.AspNetCore" Version="8.2.0-preview20" />
                    
Directory.Packages.props
<PackageReference Include="Arc4u.Standard.OAuth2.AspNetCore" />
                    
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 Arc4u.Standard.OAuth2.AspNetCore --version 8.2.0-preview20
                    
#r "nuget: Arc4u.Standard.OAuth2.AspNetCore, 8.2.0-preview20"
                    
#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.
#:package Arc4u.Standard.OAuth2.AspNetCore@8.2.0-preview20
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Arc4u.Standard.OAuth2.AspNetCore&version=8.2.0-preview20&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Arc4u.Standard.OAuth2.AspNetCore&version=8.2.0-preview20&prerelease
                    
Install as a Cake Tool

Arc4u.Standard.OAuth2.AspNetCore

Core framework to integrate OAuth2 and creation of the principal in asp net core.

As it is a AspNetCore library, it is based on the Microsoft.AspNetCore.Authentication and Microsoft.AspNetCore.Authentication.OAuth libraries.

Do not use this package in other contexts than AspNetCore.

ProblemDetails extension

When working with the Results feature in Arc4u, the Rest Api controller will return a ProblemDetails object when an error occurs.

The idea is from a controller endpoint to call the business layer and return the result to the client. The business layer will return a Result object that can be converted to an ActionResult object.

    return await bl.DoSomethingAsync()
                   .ToActionOkResultAsync();

Different situations, different HttpStatusCodes can be returned.

Success path:

When the call to the business layer is a success, depending on the result, different codes will be returned.

Result:

The return code is 204 NoContent.

Result<T>

The return code is 200 Ok or 201 Created.

200 Ok HTTP GET

What to return when the value is null?
On internet, it is not clear what to return when the value is null. Some say to return a 204 NoContent, others say to return a 200 OK with a null value.
I find personaly than returning a 204 NoContent is more appropriate. The client knows that the call was successful but there is no content to return.

If you are using proxy code generator like NSwagStudio, this situation is not managed like I would expect. If you return a 200 Ok when you have a value and a 204 NoContent when the value is null, the proxy code generator will return the value when there is a value but will manage the 204 NoContent as an error! To avoid this today, I return a 200 Ok with a null value. The client will have to manage the null value.

It is possible to override the default behavior by informing the extension method to return another code when the value is null.

    return await bl.DoSomethingAsync(id)
                   .ToActionResultAsync(() => StatusCode(StatusCodes.Status204NoContent));

Mapping to a Dto is also possible. The mapper is a function and can be AutoMapper or any other mapper.

    return await bl.DoSomethingAsync(id)
                   .ToActionResultAsync(mapper.Map<ContractDto>);
201 Created HTTP POST

When the result is a 201 Created, the location header is set to the location of the created resource.

To handle this specific situation, the extension method ToActionCreatedResultAsync is available. The method expect a Uri to set the location correctly.
The need to split the call in two steps is to allow the business layer to return the result and the controller to set the location header.
If you do this in one step, the location is captured when the fluent Api is built and the location will never be updated when the ToActionCreatedResultAction is called!


        Uri? location = null;

        var result = await bl.DoSomethingAsync(dto, cancellation)
                                         .OnSuccess((contract) => location = new Uri(Url.ActionLink("GetById", "Contract", new { id = contract.Id })!))
                                         .ConfigureAwait(false);

        return await result.ToActionCreatedResultAsync(location, mapper.Map<ContractDto>)
                           .ConfigureAwait(false);

Error path:

When an error occurs, the business layer will return a Result object with the error information.

Different cases could happen:

  • An exception was thrown.
  • A validation error occured.
  • A Problem occured.
Exception

When an exception is thrown, a 500 InternalServerError is returned with a ProblemDetails message explaining that the exception is log with an activyId. There is no more explanation about the exception to avoid leaking information.

Validation error

When some parameters or Dto is given to a controller, code will validate the inputs.
If the validation fails, a 422 UnprocessableEntity is returned with a ValidationProblemDetails message explaining the validation errors.
The code of the validation error is used to categorrized the errors (they are grouped by code).

Problem

When a problemDetailError is returned, a 500 InternalServerError is returned with a ProblemDetails message explaining the error when no specific StatusCode is given.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Arc4u.Standard.OAuth2.AspNetCore:

Package Downloads
Arc4u.Standard.OAuth2.AspNetCore.Msal

Core Framework used in AspNetCore to authenticate user based on Msal.

Arc4u.Standard.OAuth2.AspNetCore.Authentication

Package Description

Arc4u.Standard.OAuth2.AspNetCore.Adal

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.3.2 168 7/18/2025
8.3.2-preview08 299 6/11/2025
8.3.2-preview07 293 6/10/2025
8.3.2-preview06 149 6/3/2025
8.3.2-preview05 82 5/31/2025
8.3.2-preview04 117 5/25/2025
8.3.2-preview03 243 5/13/2025
8.3.2-preview02 151 5/10/2025
8.3.2-preview01 185 5/7/2025
8.3.1 227 5/5/2025
8.3.0 188 5/4/2025
8.3.0-preview04 111 5/3/2025
8.3.0-preview03 110 2/15/2025
8.3.0-preview02 118 11/14/2024
8.3.0-preview01 178 8/30/2024
8.2.1 926 11/10/2024
8.2.1-preview01 153 11/9/2024
8.2.0 1,528 8/16/2024
8.2.0-preview31 178 8/16/2024
8.2.0-preview30 200 8/1/2024
8.2.0-preview29 111 7/25/2024
8.2.0-preview28 113 7/25/2024
8.2.0-preview27 179 6/28/2024
8.2.0-preview26 191 6/27/2024
8.2.0-preview25 171 6/26/2024
8.2.0-preview24 173 6/9/2024
8.2.0-preview23 273 5/29/2024
8.2.0-preview22 194 5/26/2024
8.2.0-preview21 170 5/22/2024
8.2.0-preview20 187 5/19/2024
8.2.0-preview19 140 5/18/2024
8.2.0-preview18 140 5/12/2024
8.2.0-preview17 123 5/12/2024
8.2.0-preview16 128 5/12/2024
8.2.0-preview15 138 5/11/2024
8.2.0-preview14 132 5/10/2024
8.2.0-preview13 134 5/9/2024
8.2.0-preview12 178 5/8/2024
8.2.0-preview11 189 5/7/2024
8.2.0-preview10 163 5/5/2024
8.2.0-preview09 166 5/4/2024
8.2.0-preview08 148 4/25/2024
8.2.0-preview07 178 4/23/2024
8.2.0-preview06 173 4/23/2024
8.2.0-preview05 159 4/21/2024
8.2.0-preview04 154 4/20/2024
8.2.0-preview03 141 4/17/2024
8.2.0-preview02 181 4/12/2024
8.2.0-preview01 187 4/11/2024
8.1.0 2,628 2/7/2024
8.1.0-preview10 159 2/6/2024
8.1.0-preview09 158 1/29/2024
8.1.0-preview08 206 1/9/2024
8.1.0-preview07 204 12/31/2023
8.1.0-preview06 175 12/30/2023
8.1.0-preview05 180 12/24/2023
8.1.0-preview04 162 12/23/2023
8.1.0-preview03 163 12/20/2023
8.1.0-preview02 194 12/20/2023
8.1.0-preview01 179 12/19/2023
8.0.0 300 12/15/2023
8.0.0-preview01 182 12/14/2023
6.1.22.1-preview06 217 11/25/2023
6.1.22.1-preview05 156 11/24/2023
6.1.22.1-preview04 198 11/20/2023
6.1.22.1-preview03 202 11/17/2023
6.1.22.1-preview02 149 11/17/2023
6.1.22.1-preview01 137 11/16/2023
6.1.21.1-preview04 174 10/10/2023
6.1.21.1-preview03 124 10/10/2023
6.1.21.1-preview02 133 10/5/2023
6.1.21.1-preview01 125 9/21/2023
6.1.20.1-preview03 152 8/31/2023
6.1.20.1-preview02 238 8/14/2023
6.1.20.1-preview01 215 8/13/2023
6.1.18.1 910 8/18/2023
6.0.14.3-preview56 212 8/7/2023
6.0.14.3-preview55 190 8/4/2023
6.0.14.3-preview54 234 8/3/2023
6.0.14.3-preview53 231 8/1/2023
6.0.14.3-preview52 238 7/26/2023
6.0.14.3-preview51 242 7/26/2023
6.0.14.3-preview50 236 7/19/2023
6.0.14.3-preview49 225 7/19/2023
6.0.14.3-preview48 242 7/12/2023
6.0.14.3-preview47 224 7/6/2023
6.0.14.3-preview46 237 7/3/2023
6.0.14.3-preview45 220 6/24/2023
6.0.14.3-preview44 236 6/18/2023
6.0.14.3-preview43 214 6/18/2023
6.0.14.3-preview42 215 6/14/2023
6.0.14.3-preview41 240 6/12/2023
6.0.14.3-preview40 220 6/9/2023
6.0.14.3-preview39 218 6/8/2023
6.0.14.3-preview38 219 5/30/2023
6.0.14.3-preview37 262 5/29/2023
6.0.14.3-preview36 257 5/26/2023
6.0.14.3-preview35 242 5/23/2023
6.0.14.3-preview34 221 5/22/2023
6.0.14.3-preview33 258 5/19/2023
6.0.14.3-preview32 246 5/19/2023
6.0.14.3-preview31 234 5/18/2023
6.0.14.3-preview30 230 5/12/2023
6.0.14.3-preview29 236 5/12/2023
6.0.14.3-preview28 245 5/10/2023
6.0.14.3-preview27 264 5/8/2023
6.0.14.3-preview26 262 5/7/2023
6.0.14.3-preview25 243 5/3/2023
6.0.14.3-preview24 251 4/29/2023
6.0.14.3-preview23 262 4/28/2023
6.0.14.3-preview22 238 4/27/2023
6.0.14.3-preview21 237 4/26/2023
6.0.14.3-preview20 256 4/24/2023
6.0.14.3-preview19 260 4/18/2023
6.0.14.3-preview18 252 4/17/2023
6.0.14.3-preview17 274 4/16/2023
6.0.14.3-preview16 229 4/14/2023
6.0.14.3-preview15 265 4/14/2023
6.0.14.3-preview14 238 4/11/2023
6.0.14.3-preview13 294 4/3/2023
6.0.14.3-preview12 240 4/1/2023
6.0.14.3-preview11 255 4/1/2023
6.0.14.3-preview10 255 3/30/2023
6.0.14.3-preview09 239 3/29/2023
6.0.14.3-preview08 284 3/25/2023
6.0.14.3-preview07 267 3/24/2023
6.0.14.3-preview06 261 3/19/2023
6.0.14.3-preview05 248 3/17/2023
6.0.14.3-preview04 232 3/15/2023
6.0.14.3-preview03 207 3/15/2023
6.0.14.3-preview02 251 3/14/2023
6.0.14.3-preview01 227 3/11/2023
6.0.14.2 1,678 3/8/2023
6.0.14.2-preview02 252 3/4/2023
6.0.14.2-preview01 231 3/3/2023
6.0.14.1 486 2/17/2023
6.0.14.1-preview02 266 2/16/2023
6.0.14.1-preview01 253 2/15/2023
6.0.13.1 471 2/15/2023
6.0.12.1 485 2/15/2023
6.0.11.2 485 2/15/2023
6.0.11.2-preview03 233 2/14/2023
6.0.11.2-preview02 253 2/13/2023
6.0.11.2-preview01 242 2/12/2023
6.0.11.1 3,381 1/11/2023
6.0.11.1-preview11 251 1/10/2023
6.0.11.1-preview10 243 1/10/2023
6.0.11.1-preview09 289 1/8/2023
6.0.11.1-preview08 270 1/4/2023
6.0.11.1-preview07 267 1/3/2023
6.0.11.1-preview06 246 1/3/2023
6.0.11.1-preview05 256 1/2/2023
6.0.11.1-preview04 237 1/2/2023
6.0.11.1-preview03 227 12/10/2022
6.0.11.1-preview02 224 11/15/2022
6.0.11.1-preview01 356 11/11/2022
6.0.9.3 3,186 11/8/2022
6.0.9.2 798 9/27/2022
6.0.9.1 4,323 9/17/2022
6.0.8.4 706 11/8/2022
6.0.8.3 845 9/27/2022
6.0.8.2 703 9/16/2022
6.0.8.1 687 9/7/2022
6.0.8.1-preview02 233 9/5/2022
6.0.8.1-preview01 271 8/18/2022
6.0.6.1-preview03 305 6/25/2022
6.0.6.1-preview02 277 6/15/2022
6.0.6.1-preview01 236 6/15/2022
6.0.5.1-preview01 511 5/10/2022
6.0.4.1-preview04 284 5/7/2022
6.0.4.1-preview03 294 4/27/2022
6.0.4.1-preview02 261 4/27/2022
6.0.4.1-preview01 273 4/24/2022
5.0.17.3 778 9/19/2022
5.0.17.3-preview01 304 9/16/2022
5.0.17.2 723 9/1/2022
5.0.17.2-preview07 260 8/29/2022
5.0.17.2-preview06 256 8/24/2022
5.0.17.2-preview05 250 8/24/2022
5.0.17.2-preview04 233 8/23/2022
5.0.17.2-preview03 249 8/22/2022
5.0.17.2-preview02 239 8/22/2022
5.0.17.2-preview01 255 8/17/2022
5.0.17.1 777 5/30/2022
5.0.16.1 774 5/7/2022
5.0.16.1-preview02 299 4/17/2022
5.0.16.1-preview01 268 4/14/2022
5.0.15.1-preview07 305 4/2/2022
5.0.15.1-preview06 257 4/1/2022
5.0.15.1-preview05 274 3/30/2022
5.0.15.1-preview04 293 3/27/2022
5.0.15.1-preview03 270 3/18/2022
5.0.15.1-preview02 296 3/13/2022
5.0.15.1-preview01 291 3/13/2022
5.0.14.1-preview9 267 3/1/2022
5.0.14.1-preview7 268 2/23/2022
5.0.14.1-preview6 296 2/20/2022
5.0.14.1-preview5 281 2/20/2022
5.0.14.1-preview4 278 2/19/2022
5.0.14.1-preview3 292 2/19/2022
5.0.14.1-preview2 282 2/10/2022
5.0.14.1-preview13 252 3/11/2022
5.0.14.1-preview12 292 3/9/2022
5.0.14.1-preview11 292 3/7/2022
5.0.14.1-preview10 293 3/2/2022
5.0.14.1-preview1 278 2/9/2022
5.0.13.1-preview4 300 1/30/2022
5.0.13.1-preview3 295 1/29/2022
5.0.13.1-preview2 297 1/29/2022
5.0.13.1-preview1 287 1/29/2022
5.0.11.2 2,265 10/20/2021
5.0.11.2-preview1 366 10/19/2021
5.0.11.1 593 10/19/2021
5.0.11.1-preview4 324 10/19/2021
5.0.11.1-preview3 386 10/18/2021
5.0.11.1-preview2 393 10/17/2021
5.0.11.1-preview1 365 10/16/2021
5.0.10.3 619 9/30/2021
5.0.10.2 669 9/30/2021
5.0.10.1 617 9/28/2021
5.0.9.1-preview1 325 9/1/2021
5.0.8.2 445 8/19/2021
5.0.8.1 479 8/11/2021
5.0.6.4 508 7/13/2021
5.0.6.3 999 7/10/2021
5.0.6.2 470 7/7/2021
5.0.6.1 921 6/29/2021
5.0.6.1-rc16 359 6/21/2021
5.0.6.1-rc15 357 6/20/2021
5.0.6 2,138 5/21/2021
5.0.5 524 5/21/2021
1.0.0 211 5/18/2024