TgBotLite 0.1.5
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package TgBotLite --version 0.1.5
NuGet\Install-Package TgBotLite -Version 0.1.5
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="TgBotLite" Version="0.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TgBotLite --version 0.1.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TgBotLite, 0.1.5"
#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.
// Install TgBotLite as a Cake Addin #addin nuget:?package=TgBotLite&version=0.1.5 // Install TgBotLite as a Cake Tool #tool nuget:?package=TgBotLite&version=0.1.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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? 😏
Usage & Example
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.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.