WTelegramClient 1.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package WTelegramClient --version 1.3.0
NuGet\Install-Package WTelegramClient -Version 1.3.0
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="WTelegramClient" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WTelegramClient --version 1.3.0
#r "nuget: WTelegramClient, 1.3.0"
#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 WTelegramClient as a Cake Addin
#addin nuget:?package=WTelegramClient&version=1.3.0

// Install WTelegramClient as a Cake Tool
#tool nuget:?package=WTelegramClient&version=1.3.0

Telegram client library written 100% in C# and .NET Standard

How to use

⚠️ This library relies on asynchronous C# programming (async/await) so make sure you are familiar with this before proceeding.

After installing WTelegramClient through Nuget, your first Console program will be as simple as:

static async Task Main(string[] _)
{
    using var client = new WTelegram.Client();
    await client.ConnectAsync();
    var user = await client.LoginUserIfNeeded();
    Console.WriteLine($"We are logged-in as {user.username ?? user.first_name + " " + user.last_name} (id {user.id})");
}

When run, this will prompt you interactively for your App api_id and api_hash (that you obtain through Telegram's API development tools page) and try to connect to Telegram servers.

Then it will attempt to sign-in as a user for which you must enter the phone_number and the verification_code that will be sent to this user (for example through SMS or another Telegram client app the user is connected to).

If the verification succeeds but the phone number is unknown to Telegram, the user might be prompted to sign-up (accepting the Terms of Service) and enter their first_name and last_name.

And that's it, you now have access to the full range of Telegram services, mainly through calls to await client.Some_TL_Method(...)

Saved session

If you run this program again, you will notice that only api_id and api_hash are requested, the other prompts are gone and you are automatically logged-on and ready to go.

This is because WTelegramClient saves (typically in the encrypted file bin\WTelegram.session) its state and the authentication keys that were negociated with Telegram so that you needn't sign-in again every time.

That file path is configurable, and under various circumstances (changing user or server address) you may want to change it or simply delete the existing session file in order to restart the authentification process.

Non-interactive configuration

Your next step will probably be to provide a configuration to the client so that the required elements (in bold above) are not prompted through the Console but answered by your program.

To do this, you need to write a method that will provide the answers, and pass it on the constructor:

static string Config(string what)
{
    if (what == "api_id") return "YOUR_API_ID";
    if (what == "api_hash") return "YOUR_API_HASH";
    if (what == "phone_number") return "+12025550156";
    if (what == "verification_code") return null; // let WTelegramClient ask the user with a console prompt 
    if (what == "first_name") return "John";      // if sign-up is required
    if (what == "last_name") return "Doe";        // if sign-up is required
    if (what == "password") return "secret!";     // if user has enabled 2FA
    return null;
}
...
using var client = new WTelegram.Client(Config);

There are other configuration items that are queried to your method but returning null let WTelegramClient choose a default adequate value. Those shown above are the only ones that have no default values and should be provided by your method.

Another simpler approach is to pass Environment.GetEnvironmentVariable as the config callback and define the above items as environment variables.

Finally, if you want to redirect the library logs to your logger instead of the Console, you can install a delegate in the WTelegram.Helpers.Log static property. Its int argument is the log severity, compatible with the classic LogLevel enum

Example of API call

ℹ️ The Telegram API makes extensive usage of base and derived classes, so be ready to use the various syntaxes C# offer to check/cast base classes into the more useful derived classes (is, as, case DerivedType )

To find which derived classes are available for a given base class, the fastest is to check our TL.Schema.cs source file as they are listed in groups. Intellisense tooltips on API structures/methods will also display a web link to the adequate Telegram documentation page.

The Telegram API object classes are defined in the TL namespace, and the API functions are available as async methods of Client.

Below is an example of calling the messages.getAllChats API function and enumerating the various groups/channels the user is in, and then using client.SendMessageAsync helper function to easily send a message:

using TL;
...
var chats = await client.Messages_GetAllChats(null);
Console.WriteLine("This user has joined the following:");
foreach (var chat in chats.chats)
    switch (chat)
    {
        case Chat smallgroup when (smallgroup.flags & Chat.Flags.deactivated) == 0:
            Console.WriteLine($"{smallgroup.id}:  Small group: {smallgroup.title} with {smallgroup.participants_count} members");
            break;
        case Channel channel when (channel.flags & Channel.Flags.broadcast) != 0:
            Console.WriteLine($"{channel.id}: Channel {channel.username}: {channel.title}");
            break;
        case Channel group:
            Console.WriteLine($"{group.id}: Group {group.username}: {group.title}");
            break;
    }
Console.Write("Type a chat ID to send a message: ");
long id = long.Parse(Console.ReadLine());
var target = chats.chats.First(chat => chat.ID == id);
Console.WriteLine($"Sending a message in chat {target.ID}: {target.Title}");
await client.SendMessageAsync(target, "Hello, World");

Terminology in Telegram Client API

Some of these terms/classnames can be confusing as they differ from the terms shown to end-users

  • Channel : A (large) chat group (sometimes called supergroup) or a broadcast channel (the broadcast flag differenciate those)
  • Chat : A private simple chat group with few people (it may be migrated to a supergroup/channel when it doesn't fit anymore)
  • Chats : In plural, it means either Chat or Channel
  • Peer : Either a Chat, Channel or a private chat with a User
  • Dialog : The current status of a chat with a Peer (draft, last message, unread count, pinned...)
  • DC (DataCenter) : There are a few datacenters depending on where in the world the user (or an uploaded media file) is from.
  • Access Hash : For more security, Telegram requires you to provide the specific access_hash for chats, files and other resources before interacting with them (not required for a simple Chat). This is like showing a pass that proves you are entitled to access it. You obtain this hash when you first gain access to a resource and occasionnally later when some events about this resource are happening or if you query the API. You should remember this hash if you want to access that resource later.

Other things to know

The Client class also offers an Update event that is triggered when Telegram servers sends unsollicited Updates or notifications/information/status/service messages, independently of your API requests. See Examples/Program_ListenUpdates.cs

An invalid API request can result in a RpcException being raised, reflecting the error code and status text of the problem.

You can find more code examples in EXAMPLES.md and in the Examples subdirectory.

The other configuration items that you can override include: session_pathname, server_address, device_model, system_version, app_version, system_lang_code, lang_pack, lang_code, user_id

Optional API parameters have a default value of null when unset. Passing null for a required string/array is the same as empty (0-length). Required API parameters/fields can sometimes be set to 0 or null when unused (check API documentation or experiment).

I've added several useful converters, implicit cast or helper properties to various API object so that they are more easy to manipulate.

Beyond the TL async methods, the Client class offers a few other methods to simplify the sending/receiving of files, medias or messages.

This library works best with .NET 5.0+ and is also available for .NET Standard 2.0 (.NET Framework 4.6.1+ & .NET Core 2.0+)

Troubleshooting guide

Here is a list of common issues and how to fix them so that your program work correctly:

  1. Are you using the Nuget package instead of the library source code? <br/>It is not recommended to copy/compile the source code of the library for a normal usage. <br/>When built in DEBUG mode, the source code connects to Telegram test servers. So you can either:

  2. After ConnectAsync(), are you calling LoginUserIfNeeded()? <br/>If you don't authenticate as a user (or bot), you have access to a very limited subset of Telegram APIs

  3. Did you use await with every Client methods? <br/>This library is completely Task-based and you should learn, understand and use the asynchronous model of C# programming before proceeding further.

  4. Are you keeping a live reference to the Client instance and dispose it only at the end of your program? <br/>If you create the instance in a submethod and don't store it somewhere permanent, it might be destroyed by the garbage collector at some point. So as long as the client must be running, make sure the reference is stored in a (static) field or somewhere appropriate. <br/>Also, as the Client class inherits IDisposable, remember to call client.Dispose() when your program ends (or exit a using scope).

  5. Is your program ending immediately instead of waiting for Updates? <br/>Your program must be running/waiting continuously in order for the background Task to receive and process the Updates. So make sure your main program doesn't end immediately. For a console program, this is typical done by waiting for a key or some close event.

  6. Is every Telegram API call rejected? (typically with an exception message like AUTH_RESTART) <br/>The user authentification might have failed at some point (or the user revoked the authorization). It is therefore necessary to go through the authentification again. This can be done by deleting the WTelegram.session file, or at runtime by calling client.Reset()

Library uses and limitations

This library can be used for any Telegram scenarios including:

  • Sequential or parallel automated steps based on API requests/responses
  • Real-time monitoring of incoming Updates/Messages
  • Download/upload of files/media
  • etc...

Secret chats (end-to-end encryption, PFS) and connection to CDN DCs have not been tested yet.

Developers feedbacks are welcome in the Telegram channel @WTelegramClient

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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 (4)

Showing the top 4 NuGet packages that depend on WTelegramClient:

Package Downloads
WTelegramClient.Extensions.Updates

Extensions over WtelegramClient For Dealing With Updates

MTProto

A MTProto client library based on wiz0u/WTelegramClient

WTC.Abstractions.Types

Telegram Type Abstractions For WTelegramClient

WTC.Abstractions.Account

WTelegramClient Abstractions for easier (Multiple) Account handling.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on WTelegramClient:

Repository Stars
yiyungent/KnifeHub
🧰 简单易用的效率工具平台
Version Downloads Last updated
4.0.1-dev.5 0 4/18/2024
4.0.1-dev.4 34 4/17/2024
4.0.1-dev.3 47 4/16/2024
4.0.1-dev.2 49 4/14/2024
4.0.1-dev.1 48 4/13/2024
4.0.0 701 4/5/2024
4.0.0-dev.8 52 4/4/2024
4.0.0-dev.7 44 4/3/2024
4.0.0-dev.6 81 3/30/2024
4.0.0-dev.5 54 3/29/2024
4.0.0-dev.4 61 3/28/2024
4.0.0-dev.2 69 3/26/2024
4.0.0-dev.1 55 3/26/2024
3.7.2 845 3/24/2024
3.7.2-dev.3 55 3/23/2024
3.7.2-dev.2 69 3/19/2024
3.7.2-dev.1 69 3/13/2024
3.7.1 1,738 3/8/2024
3.6.7-dev.13 45 3/8/2024
3.6.7-dev.12 46 3/8/2024
3.6.7-dev.11 44 3/8/2024
3.6.7-dev.9 53 3/8/2024
3.6.7-dev.8 61 3/4/2024
3.6.7-dev.7 97 2/25/2024
3.6.7-dev.6 74 2/21/2024
3.6.7-dev.5 57 2/19/2024
3.6.7-dev.4 58 2/18/2024
3.6.7-dev.3 58 2/18/2024
3.6.7-dev.1 48 2/18/2024
3.6.6 1,806 2/1/2024
3.6.5 2,075 1/18/2024
3.6.4 508 1/16/2024
3.6.4-dev.2 57 1/16/2024
3.6.4-dev.1 54 1/15/2024
3.6.3 2,279 12/31/2023
3.6.3-dev.1 63 12/31/2023
3.6.2 984 12/23/2023
3.6.2-dev.2 65 12/23/2023
3.6.2-dev.1 89 12/17/2023
3.6.1 2,148 11/30/2023
3.6.1-dev.7 56 11/30/2023
3.6.1-dev.6 62 11/29/2023
3.6.1-dev.2 83 11/25/2023
3.6.1-dev.1 145 11/17/2023
3.5.10-dev.1 90 11/11/2023
3.5.9 2,341 11/6/2023
3.5.8 1,399 10/28/2023
3.5.8-dev.5 66 10/28/2023
3.5.8-dev.4 121 10/24/2023
3.5.8-dev.3 69 10/24/2023
3.5.8-dev.2 100 10/19/2023
3.5.8-dev.1 103 10/9/2023
3.5.7 2,203 10/4/2023
3.5.6 1,287 9/22/2023
3.5.5 992 9/18/2023
3.5.5-dev.1 57 9/18/2023
3.5.4 2,561 9/6/2023
3.5.4-dev.2 69 9/6/2023
3.5.3 6,111 7/21/2023
3.5.2-dev.21 75 7/21/2023
3.5.2-dev.20 166 7/7/2023
3.5.2-dev.19 91 7/6/2023
3.5.2-dev.16 77 7/5/2023
3.5.2-dev.15 125 6/27/2023
3.5.2-dev.3 889 5/18/2023
3.5.2-dev.1 73 5/17/2023
3.5.1 17,965 5/17/2023
3.5.1-dev.4 76 5/17/2023
3.5.1-dev.3 466 5/9/2023
3.5.1-dev.2 139 5/5/2023
3.5.1-dev.1 94 5/2/2023
3.4.3-dev.4 80 5/1/2023
3.4.3-dev.3 88 4/29/2023
3.4.3-dev.2 162 4/25/2023
3.4.3-dev.1 104 4/25/2023
3.4.2 4,458 4/24/2023
3.4.2-dev.2 76 4/24/2023
3.4.2-dev.1 86 4/23/2023
3.4.1 1,041 4/21/2023
3.4.1-dev.5 74 4/21/2023
3.4.1-dev.4 155 4/9/2023
3.4.1-dev.2 79 4/8/2023
3.4.1-dev.1 103 4/2/2023
3.3.4-dev.1 89 4/1/2023
3.3.3 2,222 3/26/2023
3.3.3-dev.2 99 3/26/2023
3.3.3-dev.1 147 3/16/2023
3.3.2 1,883 3/9/2023
3.3.2-dev.2 84 3/9/2023
3.3.2-dev.1 87 3/9/2023
3.3.1 894 3/8/2023
3.3.1-dev.1 87 3/8/2023
3.2.3-dev.5 189 2/26/2023
3.2.3-dev.4 133 2/17/2023
3.2.3-dev.3 89 2/15/2023
3.2.3-dev.2 86 2/14/2023
3.2.3-dev.1 88 2/13/2023
3.2.2 5,115 2/6/2023
3.2.2-dev.7 101 2/5/2023
3.2.2-dev.6 106 2/4/2023
3.2.2-dev.5 117 1/26/2023
3.2.2-dev.4 166 1/12/2023
3.2.2-dev.3 118 1/9/2023
3.2.2-dev.2 107 1/7/2023
3.2.2-dev.1 105 1/6/2023
3.2.1 3,515 12/29/2022
3.2.1-dev.2 101 12/29/2022
3.2.1-dev.1 97 12/29/2022
3.1.6-dev.2 128 12/19/2022
3.1.6-dev.1 99 12/15/2022
3.1.5 2,349 12/7/2022
3.1.4-dev.6 86 12/7/2022
3.1.4-dev.5 93 12/5/2022
3.1.4-dev.4 109 12/2/2022
3.1.4-dev.3 113 11/26/2022
3.1.4-dev.2 94 11/26/2022
3.1.4-dev.1 96 11/26/2022
3.1.3 1,993 11/23/2022
3.1.3-dev.5 92 11/23/2022
3.1.3-dev.3 99 11/20/2022
3.1.2 1,703 11/12/2022
3.0.3 1,851 11/1/2022
3.0.2 1,650 10/26/2022
3.0.1 1,261 10/21/2022
3.0.0 3,216 10/8/2022
2.6.4 4,275 9/14/2022
2.6.3 1,780 9/2/2022
2.6.2 4,138 8/6/2022
2.5.2 3,883 7/1/2022
2.5.1 15,343 6/15/2022
2.4.1 20,146 5/20/2022
2.3.3 1,633 5/14/2022
2.3.2 1,963 5/7/2022
2.3.1 3,754 4/13/2022
2.2.1 4,643 3/28/2022
2.1.4 1,285 3/23/2022
2.1.3 1,356 3/18/2022
2.1.2 31,142 2/27/2022
2.1.1 2,963 2/13/2022
2.0.3 1,658 2/7/2022
2.0.2 1,142 2/4/2022
2.0.1 1,552 1/30/2022
2.0.0 1,575 1/24/2022
1.9.4 1,357 1/19/2022
1.9.3 1,162 1/17/2022
1.9.2 3,175 1/11/2022
1.9.1 1,176 1/3/2022
1.8.3 978 12/30/2021
1.8.2 1,661 12/25/2021
1.8.1 1,059 12/21/2021
1.7.6 1,262 12/12/2021
1.7.5 1,211 12/6/2021
1.7.4 1,532 12/1/2021
1.7.3 2,140 11/27/2021
1.7.2 1,513 11/20/2021
1.7.1 978 11/10/2021
1.6.4 1,032 11/6/2021
1.6.3 950 11/3/2021
1.6.2 942 10/31/2021
1.6.1 962 10/31/2021
1.5.1 990 10/25/2021
1.4.1 928 10/20/2021
1.3.1 921 10/19/2021
1.3.0 990 10/17/2021
1.0.2 976 10/15/2021
1.0.1 901 10/11/2021
1.0.0 1,010 9/30/2021
0.9.5 1,016 9/1/2021
0.9.4 921 8/29/2021
0.9.3 897 8/24/2021
0.9.2 900 8/19/2021
0.9.1 959 8/16/2021
0.8.1 958 8/13/2021
0.7.4 955 8/10/2021
0.7.3 911 8/9/2021
0.7.1 999 8/8/2021