Download photo without Telegram bot api – Telegram API
How can my telegram bot download photos that users sent to it without Telegram bot Api ? (im using pyTelegramBotAPI)
How can my telegram bot download photos that users sent to it without Telegram bot Api ? (im using pyTelegramBotAPI)
I have a problem with inline bots with Telegram API... I have the code: $json = file_get_contents("php://input"); $dados = json_decode($json,true); $id_query = $dados['inline_query']['id']; $resultados_inline[] = [ 'type' => 'article', 'id' => "1", 'title' => "Test", 'message_text' => "test", ]; $post[]…
How can I get channel messages from telegram channels with TLSharp? The following links haven't helped me: How can I get messages from a Telegram channel with the Telegram API How to obtain all messages from my channel in telegram?
In telegram API documentation I see: "You can either pass a file_id as String to resend a photo that is already on the Telegram servers", but I can't find ways to get file_id of uploaded file. How can I get…
I am building a Telegram Bot now and are testing it manually with a Telegram Client. Is there a way I can send client messages in the same way I can build bots? I know that I could build unit-tests…
Is it possible to create a group and assign users to it with Telegrams API? Could not find any method like this in it's method list: https://core.telegram.org/methods I am using php as my server language.
The sendPhoto command require an argument photo defined as InputFile or String. The API doc tells: Photo to send. You can either pass a file_id as String to resend a photo that is already on the Telegram servers, or upload…
Background I've found that there is a way to open a specific contact conversation screen on WhatsApp, here . Not only that, but I've found that an app called "Drupe" does the same, and maybe even more : https://lh3.googleusercontent.com/EQrs1jplMlP8SkOTdpqT4NzmgzGa5Wz2qageG1Pkjc6rKg0HBb-rwlOVW07_G7bAWgo=h900 The…
I am new to telegram BOT Api, i just set webhook , when i manually surf my web link, My Bot is receiving messages, but when i send commands or any text from telegram bot i am not getting any…
i have one question please; how i can make Class or Method with Telegram API like :https://core.telegram.org/methods from TLSharp Class ? in the TLSharpTest.cs i have some example , but i can't understand how i can write Telegram API in…