I’m working with telegram bot and i have this method to get user messages. I need to find a way to get a link to the user who send this message I saw there are this method, but i dont know how to connect them to a “link” to a profile Answer Having username is optional on Telegram, setting it
Tag: telegram
How to pin message using AbilityBot in TelegramBots library (Java)?
I searched in google and docs of library, but nothing found. official TelegramBots library docs I need some like this: Answer I found how do this: For unpin message use UnpinChatMessage.
how to get channel’s data list from Telegram by TDLib?
Telegram, I need to get channel’s data list. I use for this case TdApi. Documentation: https://javadoc.tlgrm.ru/org/drinkless/td/libcore/telegram/TdApi.html I do it based on this example: https://core.telegram.org/tdlib/tdlib.zip. I still got chat’s list by this example. Check here my way: I tried to modificate this by adding classe from documentation. Channel, ChannelFull GetChannelFull. I added GetChannelFull into Function class. In the issue I filter
How to launch Telegram app from my own android application?
I have an android app that should be able to open a chat in the telegram app by pressing a button. I want to open an existing robot chat page DIRECTLY from my app. I have a valid token for my robot. How can this be achieved? Thanks in advance. robot name : @InfotechAvl_bot robot token: 179284*********** Answer To solve
Android – Send Telegram message to a specific number
I’m trying to send a Telegram message to a specific number from within my Android app. Right now my code launches Telegram app, and then the user has to select the destinatary. What I want to do is to send the message to the specified number, without having the user select the contact. My code is as follows: Answer The