Kwtc.Tjek.Client
0.1.4
dotnet add package Kwtc.Tjek.Client --version 0.1.4
NuGet\Install-Package Kwtc.Tjek.Client -Version 0.1.4
<PackageReference Include="Kwtc.Tjek.Client" Version="0.1.4" />
paket add Kwtc.Tjek.Client --version 0.1.4
#r "nuget: Kwtc.Tjek.Client, 0.1.4"
// Install Kwtc.Tjek.Client as a Cake Addin #addin nuget:?package=Kwtc.Tjek.Client&version=0.1.4 // Install Kwtc.Tjek.Client as a Cake Tool #tool nuget:?package=Kwtc.Tjek.Client&version=0.1.4
Tjek.com .NET API client
As the heading states this is a .NET API client for tjek.com
Warning This is work in progress
Minor and patch version bumps may have breaking changes until version 1.0.0 is released and endpoint response deserialization may not be fully tested
Supported endpoint status
- /v2/offers/search
- /v2/offers
- /v2/offers/{offerId}
- /v2/catalogs
- /v2/catalogs/{catalogId}
- /v2/catalogs/{catalogId}/pages
- /v2/catalogs/{catalogId}/hotspots
- /v2/catalogs/{catalogId}/page_decorations
How to use
Add configuration to appsettings.json
{
"TjekClientConfig": {
"ApiKey": "<API_KEY>"
}
}
An API key can be requested here: https://etilbudsavis.dk/developers
The client project includes an extension method that makes registering the client and services in the DI container easy.
builder.Services.AddTjekClientServices(builder.Configuration);
After registering the services you can inject the client and configuration.
public class MyService
{
private readonly IHttpClientFactory _httpClientFactory;
private readonly TjekClientConfig _tjekClientConfig;
public MyService(IHttpClientFactory httpClientFactory, IOptions<TjekClientConfig> tjekClientConfig)
{
_httpClientFactory = httpClientFactory;
_tjekClientConfig = tjekClientConfig.Value;
}
public void MyMethod()
{
var client = _httpClientFactory.CreateClient(Constants.HttpClientName);
}
}
Product | Versions 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. |
-
net8.0
- CommunityToolkit.Diagnostics (>= 8.2.2)
- Kwtc.Tjek.Client.Abstractions (>= 0.1.4)
- Microsoft.Extensions.Http (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.