Version v15 (and Later)
Learn How to Install, Initialize and Create Classes for Version 15 of the SDK
Introduction
.NETInstall the SDK
dotnet add package Squidex.ClientLibraryCreating Classes Manually
AuthenticationISquidexClient client =
new SquidexClient(
new SquidexOptions
{
AppName = "...",
ClientId = "...",
ClientSecret = "...",
Url = "https://cloud.squidex.io"
});Configuring Multiple Apps
Creation of Classes with Dependency Injection
Configure Multiple Apps
Configure the HTTP Pipeline
Use Concrete Clients
Using with Dependency Injection
Last updated