Tiltify.Client 0.1.0-dev2

This is a prerelease version of Tiltify.Client.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Tiltify.Client --version 0.1.0-dev2
                    
NuGet\Install-Package Tiltify.Client -Version 0.1.0-dev2
                    
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="Tiltify.Client" Version="0.1.0-dev2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Tiltify.Client" Version="0.1.0-dev2" />
                    
Directory.Packages.props
<PackageReference Include="Tiltify.Client" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Tiltify.Client --version 0.1.0-dev2
                    
#r "nuget: Tiltify.Client, 0.1.0-dev2"
                    
#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.
#:package Tiltify.Client@0.1.0-dev2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Tiltify.Client&version=0.1.0-dev2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Tiltify.Client&version=0.1.0-dev2&prerelease
                    
Install as a Cake Tool

Tiltify.Client

A modern, async-first .NET 10 client library for the Tiltify v5 API, featuring:

  • Kiota-generated typed REST client from the official OpenAPI spec
  • OAuth client credentials token management with automatic refresh
  • Webhook signature verification (HMAC-SHA256 + Base64 using Agash.Webhook.Abstractions)
  • Typed webhook event models for donations, facts/milestones, and more
  • Dependency injection extensions for easy registration
  • Native AOT compatible

Packages

Package Description
Tiltify.Client Core client, auth, webhook handler and models
Tiltify.Client.Generated Kiota-generated REST client
Tiltify.Client.DependencyInjection DI registration helpers

Quick Start

// Register services
services.AddTiltifyClient(options =>
{
    options.ClientId = "your-client-id";
    options.ClientSecret = "your-client-secret";
});

// Inject and use the factory
var factory = serviceProvider.GetRequiredService<ITiltifyClientFactory>();
using var client = factory.CreateApiClient();
var campaigns = await client.Api.Public.Campaigns.GetAsync();

// Handle webhooks
var handler = serviceProvider.GetRequiredService<ITiltifyWebhookHandler>();
var result = await handler.HandleAsync(webhookRequest, new TiltifyWebhookOptions
{
    SigningSecret = "your-webhook-signing-secret",
});

if (result.IsAuthenticated && result.Event is TiltifyDonationWebhookEvent donation)
{
    Console.WriteLine($"Donation: {donation.Data.DonorName} — {donation.Data.Amount.Value} {donation.Data.Amount.Currency}");
}

Webhook Signature Verification

Tiltify signs webhook deliveries using HMAC-SHA256. The signed string is {X-Tiltify-Timestamp}.{rawBody}, and the signature is Base64-encoded. This library verifies that automatically using the configured signing secret.

License

MIT

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Tiltify.Client:

Package Downloads
Tiltify.Client.DependencyInjection

Dependency injection extensions for Tiltify.Client.

Tiltify.Client.AspNetCore

ASP.NET Core adapter package for Tiltify.Client.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0-dev2.1 335 4/4/2026
0.1.0-dev2 57 4/4/2026
0.1.0-dev1.5 55 4/4/2026
0.1.0-dev1 58 4/2/2026