Questions tagged [telegram-webhook]

Telegram webhooks allows to let a Telegram Bot be notified of new and changed messages and other events, using the HTTPS webhook callbacks.

What is it?

Telegram webhooks allows to let a Telegram Bot be notified of new and changed messages and other events, using the HTTPS webhook callbacks.

See also

257 questions
0
votes
0 answers

How to show all arrays in Pipedream

I am getting Crypto data from a API, and sending to the Pipedream webhook. I want to send the data at Telegram personal group. I am getting an array of many objects. How can I send all the arrays data as a different different objects and a…
tcodo
  • 1
0
votes
1 answer

How to customize Telegram's getupdates URL

I try to use Telegram's getupdates URL to get updates from telegram. For example, the URL below shows the details of the last message URL: …
matin
  • 111
  • 10
0
votes
1 answer

is there a way to setup a listener for a Telegram Bot?

I would like to listen to a Telegram Bot message -the Bot is sort of a weather Bot, and on every new message, I want to get that message- in a programmatic way. I tried to use another Bot but Telegram doesn't allow interaction Bot-to-Bot! I will…
Momo Setti
  • 317
  • 2
  • 14
0
votes
0 answers

telebot register_next_step_handler_by_chat_id not works in celery shared task

I have a small Telegram bot Django project and the bot needs to send a message to users that have been inactive for over an hour and then wait for input from the user using tg_nick_or_phone_input_handler and write it to the TelegramBotClientModel…
0
votes
0 answers

Telegram Bots API responds in foreign language to my API calls from Google Apps Script

I'm using Google Apps Script for my Telegram Bot, using the webhook method. I'm using English for both Google Apps Script, and Telegram. However, my calls to the Telegram Bots API returns error messages in Dutch, forcing me to use Google…
Nathan Tew
  • 432
  • 1
  • 5
  • 21
0
votes
0 answers

how to set up "Flask" webhook for "telebot"?

Locally everything works, with the help of "ngrok" I hang up a webhook. I uploaded the code to "pythonanywhere" and the handlers are idle. There is such a view for Flask @app.route("/", methods=["GET", "POST"]) def receive_update(): if…
0
votes
0 answers

Telegram webhook doesn't work for specific group

I built a Telegram bot and it works fine in multiple group chat. But after few hours or a day, one of my group doesn't response to /command anymore. I realized that telegram didn't send message to my webhook. Other group still work fine. If I remove…
boygiandi
  • 630
  • 10
  • 20
0
votes
2 answers

pyTelegramBotAPI Webhook not working on render.com

I'm trying to run a telegram bot on render.com's web service with pyTelegramBotAPI Previously, I ran the same code on heroku, and it worked well. POST requests can be seen in the logs of render.com, but the bot does not respond. How can I make this…
Nuson999
  • 13
  • 3
0
votes
2 answers

Make (integromat) "Watch Updates" module for Telegram Bot not working since yesterday

The module "Watch Updates" (webhook) since yesterday started returning only the ID of the updates, with every other field empty (message text, message ID, everything else). Tried with different bots created with 2 different accounts (1 premium and 1…
Dravis800
  • 65
  • 5
0
votes
1 answer

How to process messages from many users simultaneously[python-telegram-bot Webhooks]?

I have 2 py. files: 1. I have 4 workers. Each worker works 10 seconds. The total execution time of the program is 10 seconds. So all workers works simultaneously. import asyncio from time import sleep, time from concurrent.futures import…
0
votes
1 answer
0
votes
1 answer

Working with the generated API Gateway url in CDK

I'm creating a Telegram bot using AWS API Gateway and AWS Lambda, and defining the infrastructure using AWS CDK v2. After deploying my stack with cdk deploy I get the URL that has been generated for the API Gateway in the console output. Ideally, I…
0
votes
2 answers

webhook bot in docker container

I deploy my application using docker, and I have django-app and a telegram bot (webhook) in the same container, how can I make my webhook work? (attached screenshots) This is what I get when I run the bot without docker, it's correct and it works: *…
0
votes
1 answer

I want to know how to access incoming messages of Telegram bot without having access to account that created the bot?

I lost access to my old telegram account that had a bot on it with some important stuff. There are still messages incoming on the bot on my old account. I still have the HTTP API token, and have heard that I can access the bot from another telegram…
0
votes
0 answers

Telegram bot not responding after upload files and database on heroku

I'm a beginner of python. Below is my python code for telegram bot. It's working on XAMPP but I would to host the bot on cloud so that there's no need to start the XAMPP's Apache & MYSQL everytime when I'm trying to use the bot. However, it's not…