Skip to content

Dimonina/telegram.bot

 
 

Repository files navigation

Build status

Telegram Bot Api Library

C# library to talk to Telegrams Bot API (https://core.telegram.org/bots/api)

Usage

static async void testApiAsync()
{
    var Bot = new Telegram.Bot.Api("your API access Token");
    var me = await Bot.GetMe();
    System.Console.WriteLine("Hello my name is " + me.FirstName);
}
static void testApi()
{
    var Bot = new Telegram.Bot.Api("your API access Token");
    var me = Bot.GetMe().Result;
    System.Console.WriteLine("Hello my name is " + me.FirstName);
}

see telegram.bot.examples

Installation

Install as NuGet package:

Install-Package Telegram.Bot

For testing you can use the MyGet feed with automated builds

API Coverage

Updated to Bot API 2.0

Missing / TODO (last check 10.05.2016):

About

Telegram Bot Api C# Library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%