mohammaddabiri / BudgetBot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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);
}

Installation

Install as NuGet package:

Install-Package Telegram.Bot

API Coverage

There are functions for all available API methods. (2015-10-18) Missing: Making requests when getting updates

About

License:GNU General Public License v3.0


Languages

Language:C# 100.0%