Metaforce.WebEditor.Api.Client
2.0.0
See the version list below for details.
dotnet add package Metaforce.WebEditor.Api.Client --version 2.0.0
NuGet\Install-Package Metaforce.WebEditor.Api.Client -Version 2.0.0
<PackageReference Include="Metaforce.WebEditor.Api.Client" Version="2.0.0" />
paket add Metaforce.WebEditor.Api.Client --version 2.0.0
#r "nuget: Metaforce.WebEditor.Api.Client, 2.0.0"
// Install Metaforce.WebEditor.Api.Client as a Cake Addin #addin nuget:?package=Metaforce.WebEditor.Api.Client&version=2.0.0 // Install Metaforce.WebEditor.Api.Client as a Cake Tool #tool nuget:?package=Metaforce.WebEditor.Api.Client&version=2.0.0
Metaforce.WebEditor.Api clients
This client aims to facilitate the integration with the Metaforce WebEditor api. There are two versions of this package:
- One written in netstandard2.0 aimed at .NET Framework implementations - Metaforce.WebEditor.Api.Client.
- One written in net6.0 aimed at .NET Core implementations - Metaforce.WebEditor.Api.Client.Core.
The main difference is that the .NET Core package offers the ability to authenticate using mTLS, otherwise both packages offers the exact same funtionality.
Getting started
Download the package to include it in your project and enjoy 😃
Usage Metaforce.WebEditor.Api.Client
ClientId/ClientSecret authentication
Setup you appsettings.json with the following properties:
{
"WebEditorClientOptions": {
"AuthorityEndpoint": "https://identity-v2.metaforce.net",
"ApiBaseAddress": "https://api.webeditor.metaforce.net",
"ClientId": "YOUR_CLIENT_ID",
"ClientSecret": "YOUR_CLIENT_SECRET",
"Scopes": "api.external",
"CustomerEnvironment": "Test"
}
}
Configure services
var hostBuilder = new HostBuilder()
.ConfigureAppConfiguration((context, config) =>
{
config.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json");
})
.ConfigureServices((context, services) =>
{
_ = services.WebEditorClient(context.Configuration);
});
var host = hostBuilder.Build();
Usage Metaforce.WebEditor.Api.Client.Core
ClientId/ClientSecret authentication (Core)
See ClientId/ClientSecret authentication configuration above...
mTLS authentication
Setup you appsettings.json with the following properties:
{
"WebEditorClientOptions": {
"AuthorityEndpoint": "https://identity-v2.metaforce.net",
"ApiBaseAddress": "https://api.webeditor.metaforce.net",
"ClientId": "YOUR_CLIENT_ID",
"CertificateThumbprint": "YOUR_THUMBPRINT",
"Scopes": "api.external",
"CustomerEnvironment": "Test"
}
}
Configure services (Core)
var hostBuilder = new HostBuilder()
.ConfigureAppConfiguration((context, config) =>
{
config.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json");
})
.ConfigureServices((context, services) =>
{
_ = services.WebEditorClientCore(context.Configuration);
});
var host = hostBuilder.Build();
Once configuration is done you can use the following clients (interfaces):
- IWebEditorApiClient
- IWebEditorArchive
- IWebEditorDistribution
- IWebEditorStatus
Each interface corresponds to the api:s exposed by the Metaforce WebEditor api.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- IdentityModel (>= 6.0.0)
- Microsoft.AspNetCore.Http.Features (>= 5.0.17)
- Microsoft.AspNetCore.Mvc.Core (>= 2.2.5)
- Microsoft.Extensions.Configuration.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 6.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Http.Polly (>= 6.0.9)
- Newtonsoft.Json (>= 13.0.1)
- ViewpointPro.Client (>= 6.0.7)
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 |
---|---|---|
4.0.0 | 33 | 11/17/2024 |
3.0.1 | 170 | 1/12/2024 |
3.0.0 | 153 | 12/31/2023 |
2.0.3 | 597 | 7/14/2023 |
2.0.2 | 165 | 7/14/2023 |
2.0.1 | 157 | 7/13/2023 |
2.0.0 | 162 | 7/13/2023 |
1.0.17 | 172 | 7/13/2023 |
1.0.16 | 631 | 10/24/2022 |
1.0.15 | 673 | 9/30/2022 |
1.0.14 | 418 | 9/30/2022 |
1.0.13 | 394 | 9/29/2022 |
1.0.12 | 402 | 9/29/2022 |
1.0.11 | 406 | 9/16/2022 |
1.0.10 | 707 | 4/27/2022 |
1.0.9 | 500 | 4/14/2022 |
1.0.8 | 446 | 4/14/2022 |
1.0.7 | 441 | 4/11/2022 |
1.0.6 | 435 | 4/11/2022 |
1.0.5 | 502 | 4/4/2022 |
1.0.4 | 436 | 4/1/2022 |
1.0.3 | 593 | 3/10/2022 |
1.0.2 | 607 | 1/24/2022 |
1.0.1 | 529 | 1/19/2022 |
1.0.0 | 453 | 1/19/2022 |
0.0.15 | 496 | 1/14/2022 |
0.0.14 | 458 | 1/13/2022 |
0.0.13 | 444 | 1/13/2022 |
0.0.12 | 480 | 1/11/2022 |
0.0.11 | 463 | 1/11/2022 |
0.0.10 | 299 | 1/5/2022 |
0.0.9 | 283 | 1/4/2022 |
0.0.8 | 289 | 1/4/2022 |
0.0.7 | 277 | 1/3/2022 |
0.0.6 | 294 | 1/2/2022 |
0.0.5 | 311 | 12/25/2021 |
0.0.4 | 395 | 12/14/2021 |
0.0.3 | 287 | 12/14/2021 |
0.0.2 | 293 | 12/14/2021 |
0.0.1 | 308 | 12/14/2021 |