Skip to content

Latest commit

 

History

History
183 lines (129 loc) · 13.7 KB

FAQ.md

File metadata and controls

183 lines (129 loc) · 13.7 KB

FAQ

1. How to remove the Console logs?

Writing the library logs to the Console is the default behavior of the WTelegram.Helpers.Log delegate.
You can change the delegate with the += operator to also write them somewhere else, or with the = operator to prevent them from being printed to screen and instead write them somewhere (file, logger, ...). In any case, it is not recommended to totally ignore those logs because you wouldn't be able to analyze a problem after it happens.

Read the example about logging settings for how to write logs to a file.

2. How to handle multiple user accounts

The WTelegram.session file contains the authentication keys negociated for the current user.

You could switch the current user via an Auth_Logout followed by a LoginUserIfNeeded but that would require the user to sign in with a verification_code each time.

Instead, if you want to deal with multiple users from the same machine, the recommended solution is to have a different session file for each user. This can be done by having your Config callback reply with a different filename (or folder) for "session_pathname" for each user. This way, you can keep separate session files (each with their authentication keys) for each user.

If you need to manage these user accounts in parallel, you can create multiple instances of WTelegram.Client, and give them a Config callback that will select a different session file ; for example: new WTelegram.Client(what => Config(what, "session42"))

Also please note that the session files are encrypted with your api_hash, so if you change it, the existing session files can't be read anymore. Your api_id/api_hash represents your application, and shouldn't change with each user account the application will manage.

3. How to use the library in a WinForms or WPF application

The library should work without a problem in a GUI application. The difficulty might be in your Config callback when the user must enter the verification code or password, as you can't use Console.ReadLine here.

An easy solution is to call Interaction.InputBox("Enter verification code") instead.
This might require adding a reference (and using) to the Microsoft.VisualBasic assembly.

A more complex solution requires the use of a ManualResetEventSlim that you will wait for in Config callback, and when the user has provided the verification_code through your GUI, you "set" the event to release your Config callback so it can return the code. (see example)

4. Where to get the access_hash? Why the error CHANNEL_INVALID or USER_ID_INVALID?

An access_hash is required by Telegram when dealing with a channel, user, photo, document, etc...
This serves as a proof that you are entitled to access it (otherwise, anybody with the ID could access it)

A small private Chat don't need an access_hash and can be queried using their chat_id only. However most common chat groups are not Chat but a Channel supergroup (without the broadcast flag). See Terminology in ReadMe.
Some TL methods only applies to private Chat, some only applies to Channel and some to both.

The access_hash must usually be provided within the Input... structure you pass in argument to an API method (InputPeer, InputChannel, InputUser, etc...).
You obtain the access_hash through description structures like Channel, User, Photo, Document that you receive through updates or when you query them through API methods like Messages_GetAllChats, Messages_GetDialogs, Contacts_ResolveUsername, etc...
(if you have a Peer object, you can convert it to a User/Channel/Chat via the UserOrChat helper from the root class that contained the peer)

Once you obtained the description structure, there are 3 methods for building your Input... structure:

  • Recommended: If you take a look at the description structure class or base class ChatBase/UserBase, you will see that they have conversion implicit operators or methods that can create the Input... structure for you automatically.
    So you can just pass that structure you already have, in place of the Input... argument, it will work!
  • Alternatively, you can manually create the Input... structure yourself by extracting the access_hash from the description structure
  • If you have enabled the CollectAccessHash system at the start of your session, it will have collected the access_hash. You can then retrieve it with client.GetAccessHashFor<User/Channel/Photo/Document>(id)

5. I need to test a feature that has been developed but not yet released in WTelegramClient nuget

The developmental versions of the library are available through Azure DevOps as part of the Continuous Integration builds after each Github commit.

You can access these versions for testing in your program by going to our private nuget feed, then click on "Connect to feed" and follow the steps. After that, you should be able to see/install the pre-release versions in your Nuget package manager and install them in your application. (make sure you enable the pre-release checkbox)

6. Telegram asks me to signup (firstname, lastname) even for an existing account

This happens when you connect to Telegram Test servers instead of Production servers. On these separate test servers, all created accounts and chats are periodically deleted, so you shouldn't use them under normal circumstances.

You can verify this is your issue by looking at WTelegram logs on the line Connected to (Test) DC x...

This wrong-server problem typically happens when you use WTelegramClient Github source project in your application in DEBUG builds.
It is not recommended to use WTelegramClient in source code form. Instead, you should use the Nuget manager to install package WTelegramClient into your application.

If you use the Github source project in an old .NET Framework 4.x or .NET Core x.x application, you may also experience the following error

System.TypeInitializationException (FileNotFoundException for "System.Text.Json Version=5.0.0.0 ...")

To fix this, you should also switch to using the WTelegramClient Nuget package as it will install the required dependencies for it to work.

7. How to not get banned from Telegram?

Do not share publicly your app's ID and hash! They cannot be regenerated and are bound to your Telegram account.

From the official documentation:

Note that all API client libraries are strictly monitored to prevent abuse.
If you use the Telegram API for flooding, spamming, faking subscriber and view counters of channels, you will be banned forever.
Due to excessive abuse of the Telegram API, all accounts that sign up or log in using unofficial Telegram clients are automatically put under observation to avoid violations of the Terms of Service.

Here are some key points:

  1. This client is unofficial, Telegram treats such clients suspiciously, especially fresh ones.
  2. Use regular bots instead of userbots whenever possible.
  3. If you still want to automate things with a user, use it passively (i.e. receive more than sending).
  4. When using it with a user:
    • Do not use QR code login, this will result in permaban.
    • Do it with extreme care.
    • Do not use VoIP numbers.
    • Do not abuse, spam or use it for other suspicious activities.
    • Implement a rate limiting system.

(the above section is derived from gotd SUPPORT.md)

If your client displays Telegram channels to the user, you have to support and display official sponsored messages.

8. I can't import phone numbers. I get error PHONE_NUMBER_BANNED, FLOOD_WAIT_8xxxx or PEER_FLOOD

You can get these kind of problems if you abuse Telegram Terms of Service, or the API Terms of Service, or make excessive requests.

You can try to wait more between the requests, wait for a day or two to see if the requests become possible again.

An account that was limited due to reported spam might receive PEER_FLOOD errors. Read Telegram Spam FAQ to learn more.

If you think your phone number was banned from Telegram for a wrong reason, you may try to contact [email protected], explaining what you were doing.

In any case, WTelegramClient is not responsible for the bad usage of the library and we are not affiliated to Telegram teams, so there is nothing we can do.

9. Why the error CHAT_ID_INVALID?

Most chat groups you see are likely of type Channel, not Chat.
This difference is important to understand. Please read about the Terminology in ReadMe.

You typically get the error CHAT_ID_INVALID when you try to call API methods designed specifically for a Chat, with the ID of a Channel.
All API methods taking a long api_id as a direct method parameter are for Chats and cannot be used with Channels.

There is probably another method achieving the same result but specifically designed for Channels, and it will have a similar name, but beginning with Channels_ ...

However, note that those Channel-compatible methods will require an InputChannel or InputPeerChannel object as argument instead of a simple channel ID. That object must be created with both fields channel_id and access_hash correctly filled. You can read more about this in FAQ #4.

10. chats.chats[id] fails. My chats list is empty or does not contain the chat id.

There can be several reasons why chats.chats[id] raise an error:

  • The user account you're currently logged-in as has not joined this particular chat.
    API method Messages_GetAllChats will only return those chat groups/channels the user is in, not all Telegram chat groups.
  • You're trying to use a Telegram.Bot (or TDLib) numerical ID, like -1001234567890
    Telegram Client API don't use these kind of IDs for chats. Remove the -100 prefix and try again with the rest (1234567890).
  • You're trying to use a user ID instead of a chat ID.
    Private messages with a user are not called "chats". See Terminology in ReadMe.
    To obtain the list of users (as well as chats and channels) the logged-in user is currenly engaged in a discussion with, you should use the API method Messages_GetDialogs
  • the chats.chats dictionary is empty.
    This is the case if you are logged-in as a brand new user account (that hasn't join any chat groups/channels) or if you are connected to a Test DC (a Telegram datacenter server for tests) instead of Production DC (read FAQ #6 for more)

To help determine if chats.chats is empty or does not contain a certain chat, you should dump the chat list to the screen or simply use a debugger: Place a breakpoint after the Messages_GetAllChats call, run the program up to there, and use a Watch pane to display the content of the chats.chats dictionary.

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 or the library source code?
    It is not recommended to copy/compile the source code of the library for a normal usage. When built in DEBUG mode, the source code connects to Telegram test servers (see also FAQ #6).
    So you can either:

  2. After ConnectAsync(), are you calling LoginUserIfNeeded()?
    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?
    This library is completely Task-based and you should learn, understand and use the asynchronous model of C# programming before proceeding further.

  4. Is your program ending immediately instead of waiting for Updates?
    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.

  5. Is every Telegram API call rejected? (typically with an exception message like AUTH_RESTART)
    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()