WTelegramClient 0.7.1

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

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

WTelegramClient

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

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 Task Main(string[] _)
{
    using var client = new WTelegram.Client();
    await client.ConnectAsync();
    var user = await client.UserAuthIfNeeded();
    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.CallAsync(...)

Saved session

If you run this program again, you will notice that the previous 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.

For that you need to write a method that will provide the answer, 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") { Console.Write("Code: "); return Console.ReadLine(); }
    if (what == "first_name") return "John"; // if sign-up is required
    if (what == "last_name") return "Doe";   // if sign-up is required
    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.

The configuration items shown above are the only ones that have no default values and are required to be provided by your method.

The constructor also takes another optional delegate parameter that will be called for any other Update and other information/status/service messages that Telegram sends unsollicited, independently of your API requests.

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.

The Telegram API object classes are defined in the TL namespace, and the request classes (API functions) usable with client.CallAsync are under the TL.Fn static class.

Below is an example of calling the messages.getAllChats API function and enumerating the various groups/channels the user is in:

using TL;
...
var chatsBase = await client.CallAsync(new Fn.Messages_GetAllChats { });
if (chatsBase is not Messages_Chats { chats: var chats }) throw new Exception("hu?");
Console.WriteLine("This user has joined the following:");
foreach (var chat in 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;
    }

Other things to know

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

Beyond CallAsync, the Client class offers a few other methods to simplify the sending of files, medias or messages.

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

Development status

The library is already well usable for many scenarios involving automated steps based on API requests/responses.

Here are the main expected developments:

  • Encrypt session file
  • Support SignUp of unregistered users
  • Improve code Generator (import of TL-schema JSONs)
  • Improve Nuget deployment experience (debug symbols? XML documentation?)
  • Convert API functions classes to real methods and serialize structures without using Reflection
  • Separate task/thread for reading/handling update messages independently from CallAsync
  • Support MTProto 2.0
  • Support users with 2FA enabled
  • Support secret chats end-to-end encryption & PFS
  • Support all service messages

Build Status NuGet version

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. 
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 52 4/24/2024
4.0.1-dev.6 55 4/22/2024
4.0.1-dev.5 46 4/18/2024
4.0.1-dev.4 38 4/17/2024
4.0.1-dev.3 51 4/16/2024
4.0.1-dev.2 51 4/14/2024
4.0.1-dev.1 56 4/13/2024
4.0.0 1,189 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 1,004 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,862 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,853 2/1/2024
3.6.5 2,146 1/18/2024
3.6.4 514 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,378 12/31/2023
3.6.3-dev.1 63 12/31/2023
3.6.2 1,005 12/23/2023
3.6.2-dev.2 66 12/23/2023
3.6.2-dev.1 90 12/17/2023
3.6.1 2,169 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 146 11/17/2023
3.5.10-dev.1 90 11/11/2023
3.5.9 2,359 11/6/2023
3.5.8 1,403 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,230 10/4/2023
3.5.6 1,287 9/22/2023
3.5.5 993 9/18/2023
3.5.5-dev.1 57 9/18/2023
3.5.4 2,578 9/6/2023
3.5.4-dev.2 69 9/6/2023
3.5.3 6,201 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 18,183 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,470 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,049 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,228 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,884 3/9/2023
3.3.2-dev.2 84 3/9/2023
3.3.2-dev.1 87 3/9/2023
3.3.1 903 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,277 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,531 12/29/2022
3.2.1-dev.2 103 12/29/2022
3.2.1-dev.1 99 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,361 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 2,001 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,855 11/1/2022
3.0.2 1,678 10/26/2022
3.0.1 1,269 10/21/2022
3.0.0 3,225 10/8/2022
2.6.4 4,275 9/14/2022
2.6.3 1,788 9/2/2022
2.6.2 4,151 8/6/2022
2.5.2 3,885 7/1/2022
2.5.1 15,638 6/15/2022
2.4.1 20,353 5/20/2022
2.3.3 1,642 5/14/2022
2.3.2 1,963 5/7/2022
2.3.1 3,762 4/13/2022
2.2.1 4,654 3/28/2022
2.1.4 1,293 3/23/2022
2.1.3 1,358 3/18/2022
2.1.2 31,169 2/27/2022
2.1.1 2,963 2/13/2022
2.0.3 1,658 2/7/2022
2.0.2 1,150 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,170 1/17/2022
1.9.2 3,178 1/11/2022
1.9.1 1,177 1/3/2022
1.8.3 986 12/30/2021
1.8.2 1,661 12/25/2021
1.8.1 1,059 12/21/2021
1.7.6 1,273 12/12/2021
1.7.5 1,211 12/6/2021
1.7.4 1,540 12/1/2021
1.7.3 2,140 11/27/2021
1.7.2 1,521 11/20/2021
1.7.1 978 11/10/2021
1.6.4 1,040 11/6/2021
1.6.3 950 11/3/2021
1.6.2 950 10/31/2021
1.6.1 970 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,018 9/30/2021
0.9.5 1,016 9/1/2021
0.9.4 921 8/29/2021
0.9.3 905 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