DNV.Veracity.Services.Api.This
1.4.1
See the version list below for details.
dotnet add package DNV.Veracity.Services.Api.This --version 1.4.1
NuGet\Install-Package DNV.Veracity.Services.Api.This -Version 1.4.1
<PackageReference Include="DNV.Veracity.Services.Api.This" Version="1.4.1" />
paket add DNV.Veracity.Services.Api.This --version 1.4.1
#r "nuget: DNV.Veracity.Services.Api.This, 1.4.1"
// Install DNV.Veracity.Services.Api.This as a Cake Addin #addin nuget:?package=DNV.Veracity.Services.Api.This&version=1.4.1 // Install DNV.Veracity.Services.Api.This as a Cake Tool #tool nuget:?package=DNV.Veracity.Services.Api.This&version=1.4.1
Veracity - My Services API v3 - This Client
Provides an async .NET client for the This
view point in Veracity My Services API v3.
Allows manipulation and retrival of information related to a service.
Resources
- Administrators
- Services
- Subscribers
- Users
Example
With the nuget package installed, services for each resource may be individually configured, injected and requested inside your solution.
1. Configuration
To configure a resource service, introduce configuration in the form of OAuthHttpClientOptions
:
appsettings.json
The
This
view point only supports Client Credential Flow.
{
"OAuthHttpClients": [
...
{
"Name": "this-subscribers",
"Flow": "ClientCredentials",
"BaseUri": <BaseUri>,
"SubscriptionKey": <SubscriptionKey>,
"OAuthClientOptions": {
"Authority": <Authority>,
"ClientId": <ClientId>,
"ClientSecret": <ClientSecret>,
"Scopes": [ <Scope> ],
}
}
...
]
}
2. Registration
Register the service or services using extensions methods available from the DNV.Veracity.Services.Api.This.Extensions
namespace.
startup.cs
Packages from
DNV.Veracity.Service.Api
are dependent on the DNV.OAuth.Api.HttpClient package, therefore the HttpClientFactory should also be injected.
public void ConfigureServices(IServiceCollection services)
{
...
services.AddOAuthHttpClientFactory(Congiuration.GetSection("OAuthHttpClients").Get<IEnumerable<OAuthHttpClientOptions>>());
...
services.AddThisSubscribers("this-subscribers")
...
}
3. Request service
Request the service from the constructor by its interface:
ExampleController.cs
public class ExampleController : Controller
{
...
private readonly IThisSubscribers _thisSubscribers;
...
public ExampleController(IThisSubscribers thisSubscribers)
{
...
_thisSubscribers = thisSubscribers ?? throw new ArgumentNullException(nameof(thisSubscribers));
...
}
...
public async Task<IActionResult> FetchSubscribers(int page, int pageSize)
{
return Json(await _thisSubscribers.List(page, pageSize));
}
...
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. 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 was computed. 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. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- DNV.Veracity.Services.Api (>= 1.4.1)
- DNV.Veracity.Services.Api.This.Abstractions (>= 1.4.1)
-
net6.0
- DNV.Veracity.Services.Api (>= 1.4.1)
- DNV.Veracity.Services.Api.This.Abstractions (>= 1.4.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.