TgBotLite 0.1.8

dotnet add package TgBotLite --version 0.1.8
NuGet\Install-Package TgBotLite -Version 0.1.8
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.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TgBotLite --version 0.1.8
#r "nuget: TgBotLite, 0.1.8"
#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.8

// Install TgBotLite as a Cake Tool
#tool nuget:?package=TgBotLite&version=0.1.8

B&D

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 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.

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.8 185 4/27/2023
0.1.7 144 4/24/2023
0.1.6 143 4/24/2023
0.1.5 164 4/24/2023
0.1.4 168 4/24/2023
0.1.3 160 4/22/2023
0.1.2 151 4/22/2023
0.1.1 170 4/22/2023
0.1.0 204 4/22/2023