TLSharp
TLSharp copied to clipboard
Telegram client library implemented in C#
Today I got a problem: No **dialogs** in response of **_TLRequestGetDialogs_**!!! It was ok before this. What do I have to do for resolve this issue? Anyone have same issue?
@vuminhit I don't use StarkSoft anymore and this repository. you can use the main API with [tdsharp](https://github.com/egramtel/tdsharp). then you can use the [core function addProxy](https://core.telegram.org/tdlib/docs/classtd_1_1td__api_1_1add_proxy.html). _Originally posted by @mostafa8026 in...
For a user with alot of channels I am getting an internal error about casting TLDialogSlices to TDlialogs when doing the usual, var dialogs = await client.GetUserDialogsAsync() as TLDialogs; Now...
+ GetFullChat to get the info of a chat + GetAllChats to get all available user's chats + MakeAuthBotAsync to authenticate a bot instead of a user
During debugging I've noticed that I always get an AUTH_RESTART message when I re-run the application if I authenticated on the last run. There is no way to actively disconnect/logout...
Can you add a caching system to automatically cache entities (like users, groups, channels) that account saw already Cache their id and access hash and more if needed (in session...
Hi, i want to get all members in group but my code only attracts 10k members. ` public static async Task GetChatInfo(string groupName) { if (! await AuthUser()) return null;...
I used solution from #345 but after each update it requires authorization in Telegram again. Is it possible to store session.dat in, for example, db and use it persisting after...
Because of `DotNetZip` package dependency we cant install TLSharp on xamarin. Is there any way to install on it? Where `DotNetZip` package used in TLSharp? Can we manually remove it...
1. If i call a method `client.ConnectAsync()` my program stops. 2. If i write `Console.WriteLine(client.IsConnected)` i get **true**. One day I managed to run the program and I authenticated the...