From 9fb1ef533fbb0308848d12ea7fdaed48250efba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Pa=C5=A1ko?= <patrik.pasko@twinzo.eu> Date: Thu, 28 Mar 2024 07:57:07 +0000 Subject: [PATCH] Fix header changing --- Main/Program.cs | 4 ++-- README.md | 4 +++- SDK/SDK.csproj | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Main/Program.cs b/Main/Program.cs index e8dee99..c59d349 100644 --- a/Main/Program.cs +++ b/Main/Program.cs @@ -1,4 +1,4 @@ -using SDK; +using SDK; using SDK.Communication; using SDK.Models; using System; @@ -28,7 +28,7 @@ namespace Main // Define connection options with specific credentials and client identifiers ConnectionOptionsBuilder optionsBuilder = new ConnectionOptionsBuilder(); ConnectionOptions connectionOptions = optionsBuilder - .Url("https://twin.rtls.solutions/api/") + .Url("https://api.platform.twinzo.eu/") .Client(ClientName) .ClientGuid(ClientGuid) .BranchGuid(BranchGuid) diff --git a/README.md b/README.md index f6b7a86..4f64a2a 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The first thing you need to do is create the base object by which the functional ```c# ConnectionOptionsBuilder optionsBuilder = new ConnectionOptionsBuilder(); ConnectionOptions connectionOptions = optionsBuilder - .Url("https://twin.rtls.solutions/api") + .Url("https://api.platform.twinzo.eu/") .Client("YourClient") .BranchGuid("YourBranchGuid") .Timeout(1000) @@ -32,6 +32,8 @@ ConnectionOptions connectionOptions = optionsBuilder DevkitConnectorV3 devkitConnector = (DevkitConnectorV3) DevkitFactory.CreateDevkitConnector(connectionOptions); ``` +You can find api links at: https://twinzo.atlassian.net/wiki/spaces/PUBD/pages/72712207/Basics. + Through the `DevkitConnectorV3` object are accessible all the functions implemented in tDevkit. As of **V3**, Most of the functionality is ready to be used after specifying the Api Key in `ConnectionOptions` object. However, there is a small number of functions you need to be authenticated for due to their nature. These functions are mentioned in the [Full list of functions](#full-list-of-functions) section. diff --git a/SDK/SDK.csproj b/SDK/SDK.csproj index 938600d..fa42813 100644 --- a/SDK/SDK.csproj +++ b/SDK/SDK.csproj @@ -5,7 +5,7 @@ <TargetFramework>net8.0</TargetFramework> <AssemblyVersion>2021.6.28.25</AssemblyVersion> <FileVersion>2021.6.28.25</FileVersion> - <Version>4.10.2</Version> + <Version>4.10.3</Version> <GeneratePackageOnBuild>true</GeneratePackageOnBuild> </PropertyGroup> -- GitLab