A simple wrapper for the official clash of clans API.
NuGet package manager console:
Install-Package ClashOfClans.NET
Or using the .NET core CLI:
dotnet add package ClashOfClans.NET
using ClashOfClans;
var clashOfClansClient = new ClashOfClansClient("your_api_token");
using ClashOfClans;
using ClashOfClans.Core.Interfaces;
// Typically from a web application builder
IServiceCollection services;
services.AddHttpClient();
services.AddSingleton<IClashOfClansClient>(provider => new ClashOfClansClient("your_api_token", provider.GetService<IHttpClientFactory>()));