Kick.Client.AspNetCore
0.1.0-dev1
This is a prerelease version of Kick.Client.AspNetCore.
dotnet add package Kick.Client.AspNetCore --version 0.1.0-dev1
NuGet\Install-Package Kick.Client.AspNetCore -Version 0.1.0-dev1
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="Kick.Client.AspNetCore" Version="0.1.0-dev1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kick.Client.AspNetCore" Version="0.1.0-dev1" />
<PackageReference Include="Kick.Client.AspNetCore" />
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 Kick.Client.AspNetCore --version 0.1.0-dev1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Kick.Client.AspNetCore, 0.1.0-dev1"
#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 Kick.Client.AspNetCore@0.1.0-dev1
#: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=Kick.Client.AspNetCore&version=0.1.0-dev1&prerelease
#tool nuget:?package=Kick.Client.AspNetCore&version=0.1.0-dev1&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Kick.Client
Modern .NET packages for the Kick platform API, OAuth 2.1 PKCE flows, and RSA-verified webhooks.
Packages
Kick.ClientKick.Client.AspNetCoreKick.Client.DependencyInjectionKick.Client.Generated
What this repo provides
- a typed Kiota-based API client for the Kick platform API
- OAuth 2.1 PKCE helpers for desktop and local-app flows
- webhook signature verification and normalized event models
- ASP.NET Core route mapping helpers
- an interactive Spectre.Console sample that walks through tunnel setup, auth, and event subscriptions
Install
dotnet add package Kick.Client
dotnet add package Kick.Client.AspNetCore
Add the DI package when you want service registration helpers:
dotnet add package Kick.Client.DependencyInjection
Quick start
using Kick.Client.Authentication;
KickOAuthOptions options = new()
{
ClientId = "your-client-id",
RedirectUri = "http://127.0.0.1:5200/oauth/callback",
Scopes = "user:read channel:read events:subscribe"
};
string codeVerifier = KickPkceFlowHelper.GenerateCodeVerifier();
string codeChallenge = KickPkceFlowHelper.DeriveCodeChallenge(codeVerifier);
string state = Guid.NewGuid().ToString("N");
string authorizationUrl = KickPkceFlowHelper.BuildAuthorizationUrl(
"https://id.kick.com",
options,
codeChallenge,
state);
ASP.NET Core webhook example
using Kick.Client.AspNetCore;
using Kick.Client.Webhooks;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddKickClient();
var app = builder.Build();
app.MapKickWebhook(
"/webhooks/kick",
static (_, _) => Task.FromResult(new KickWebhookOptions()),
static (evt, _, _) =>
{
Console.WriteLine(evt.EventType);
return Task.CompletedTask;
});
await app.RunAsync();
Sample
Run the interactive sample to host a webhook endpoint, expose it through Azure Dev Tunnels, complete PKCE auth, and subscribe to Kick webhook events:
dotnet run --project samples/Kick.Client.Sample
Development
dotnet test Kick.Client.slnx
| Product | Versions 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.
-
net10.0
- Kick.Client (>= 0.1.0-dev1)
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 |
|---|---|---|
| 0.1.0-dev1 | 34 | 3/27/2026 |