TgBotLite 0.1.8
dotnet add package TgBotLite --version 0.1.8
NuGet\Install-Package TgBotLite -Version 0.1.8
<PackageReference Include="TgBotLite" Version="0.1.8" />
paket add TgBotLite --version 0.1.8
#r "nuget: TgBotLite, 0.1.8"
// Install TgBotLite as a Cake Addin #addin nuget:?package=TgBotLite&version=0.1.8 // Install TgBotLite as a Cake Tool #tool nuget:?package=TgBotLite&version=0.1.8
TgBotLite
A super simple dotnet api wrapper for Telegram Bot API. I try to make this library as simple as possible (KISS), without any hard linked classes or weird way to handle things, which gets broken when Telegram Bot API update something. This library need you to open https://core.telegram.org/bots/api all the time. Good way to learn the API isn't it? 😏
Example
Echo bot
Clone this reposistory, open project Examples/EchoBotLongPolling
, replace the bot token and run.
Usage
Long polling example
var bot = new TgBot("bot token");
// Start long polling
bot.OnUpdateReceived += Bot_OnUpdateReceived;
bot.StartLongPolling();
// You have to do something here to wait, while loop or anything because startlongpolling is not blocking
// ...
private void Bot_OnUpdateReceived(object? sender, System.Text.Json.JsonElement e)
{
// tg updates by getUpdates method in the api
// use JsonElement to get properties
// e.g
// jsonElement.GetProperty("result").GetProperty("update_id").GetInt32();
}
Send bot request
// see which method you want in https://core.telegram.org/bots/api
// example you want to sendMessage
JsonElement response = await bot.SendAsync("sendMessage", new {
chat_id = 12312323,
text = "hewlo"
});
// Do anything to response object, you may want to check TgResponseHelper
Webhook
For webhook, all you need use is "Send bot request" (see above).
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- System.Text.Json (>= 7.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.