Kwtc.Tjek.Client
0.1.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Kwtc.Tjek.Client --version 0.1.3
NuGet\Install-Package Kwtc.Tjek.Client -Version 0.1.3
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="Kwtc.Tjek.Client" Version="0.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Kwtc.Tjek.Client --version 0.1.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Kwtc.Tjek.Client, 0.1.3"
#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 Kwtc.Tjek.Client as a Cake Addin #addin nuget:?package=Kwtc.Tjek.Client&version=0.1.3 // Install Kwtc.Tjek.Client as a Cake Tool #tool nuget:?package=Kwtc.Tjek.Client&version=0.1.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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
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 Task 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- CommunityToolkit.Diagnostics (>= 8.2.2)
- Kwtc.Tjek.Client.Abstractions (>= 0.1.3)
- 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.