Skip to content
Snippets Groups Projects
Commit 9fb1ef53 authored by Patrik Paško's avatar Patrik Paško
Browse files

Fix header changing

parent c9d73ab3
No related branches found
No related tags found
No related merge requests found
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)
......
......@@ -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.
......
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment