Category "telegram"

Add a hyperlink to Telegram `UserName` ( profile ) or Communicate using Telegram Group/Channel to send messages

I would like to use my telegram Group name to communicate with individual users or on other groups. If any other user clicks on this id, it should direct them t

It doesn't pick up the variable correctly in subprocess.call (python)

I am creating a telegram bot to send the information that I request to the app. When I run the code below it works fine except for the last part, when it does t

How can I add values to the telegram bot keyboard only if this value exists in the database?

My database periodically changes the number of values. I want the values to be displayed in the telegram bot's keyboard only if they exist. How can this be done

Python Telegram Bot: How to measure interaction time/response time of user?

how can I measure the time the user uses to interact with the bot? E.g. The bot sends a message. We want to measure the time from the reception of the message t

The connection between my arduino board and my telegram channel is not working

Im trying to connect a ldr sensor to telegram bot, so that i know if the lights are tripping or not, but it seems like the tripped messages aren't going through

Get user id by forwarded message (telebot)

I can't solve the problem: I can't get the id of the user whose message I forwarded to the bot. When i forward a message i get my id. I'll be glad to help!!!! M

Add member to telegram channel

I have been looking for a way to add a number of users to a telegram channel (with users id) for a long time and I didn't find anything. (I'm sure there is such

TeleBot, How to make bot auto reply message after 10mins

TeleBot, how to set it schedule send after user send message to our bot, i want it auto reply to user after 10mins

Telethon give an error when scrap group more than 6K member ('ChannelParticipants' object is not subscriptable)

Telethon give an error when scrap group more than 6K member ('ChannelParticipants' object is not subscriptable) all_participants = [] all_participants = client.

How do I avoid using global variables when writing a Telegram bot

I'm writing a Telegram bot on Python using the python-telegram-bot library. The bot's function is to look up POIs around a given location. I have a Conversation

is it possible to get online incoming messages from users in telegram (not bot)?

I need to get all incoming messages from all possible social media and redirect them in one app, using this protocol https://pusher.com/docs/channels/library_au

Telegram bot: List of telegram bot commands

I can not find how to get a list of commands from a telegram bot. Neither via api nor via external binding. Is it even possible? For example. I created a list o

Trying to handle an error but cannot do it! Telegram

I have made a telegram bot using pyrogram to upload a large video and the the progress bar is shown, however the progress bar is repeatedly edited message with

Do bots have their own Chat IDs?

Do bots have chat_id like user accounts? Where can I find it? I want to use it to send messages to my bot using pyrogram.

How to validate data received via the Telegram's Web App

I'm trying to validate WebApp data but the result is not what I wanted. Telegram documentation: data_check_string = ... secret_key = HMAC_SHA256(<bot_token&g

Telegram bot long polling stops at 50s

I wrote a simple C++ program where I use libcurl to send a HTTP POST request at getUpdates URL with the parameter timeout=3600 but it returns after 50 seconds i

Network errors with Python Telegram Bot

I use a Python Telegram Bot script in Visual Studio Code on my PC, and sometimes i have this error: telegram.ext.dispatcher - ERROR - No error handlers are regi

Telegram Web Bots data validation in JavaScript

I've tried to do user verification script for telegram web app for bots. I have no idea how to fix it. import sha256 from 'js-sha256' const telegram = window.T

Telegram bot and google apps script not working

Good evening everyone, forgive the trouble, I tried to do a "search" on the site but I could not find the answer to my problem so I thought of opening a new dis

How can I send an image with a caption using Telethon in python?

I'm aware I can use this client.send_file(receiver, '/path/to/photo.jpg') to send an image, but how can I attach a caption to the image?