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
2 answers

How to get messages that were not delivered while Telegram Bot web-server was down?

Curious, if there is way to avoid skipping messages sent from Telegram Bot while web-server that accepts Webhooks is down (because of redeploy, failure or maintenance). When you use polling - Telegram API sends messages starting from last retrieved…
0
votes
2 answers

telegram bot api: Bad Request: wrong file_id or the file is temporarily unavailable

Bad Request: wrong file_id or the file is temporarily unavailable Sometimes when I request a file url from Telegram with the getFile method with a telegram bot api, I get this error that I did not find any explanation for it. If you have…
smorz
  • 85
  • 6
0
votes
1 answer

Dialogflow fulfillment answers don't reach Telegram, Facebook and Slack integration

I created a simple bot to test some new resources, but I'm facing an issue with fulfillment responses on some clients. I'm testing with many integrations. ✅ The fulfillment work fine with: Web Demo and Dialogflow Messenger The fulfillment fails…
0
votes
1 answer

How I can make a configure AWS EC2 apache server

How I can make configure for an AWS EC2 apache instance server to do the flowing: Accepts incoming POSTs from subnets 149.154.160.0/20 and 91.108.4.0/22 on port 443, 80, 88, or 8443
0
votes
1 answer

Deploying Telegram chatbot on Google Compute Engine and problem about webhook url setting

I am deploying my Telegram chatbot on Google Compute Engine and getting stuck with the setting of the webhook url. I have a config.ini to store the related information and I was trying to set with the url of the project: [TELEGRAM] ACCESS_TOKEN =…
0
votes
1 answer

How to understand what message from the telegram bot answered the user?

I use Laravel Framework and Telegram Bot SDK. I looked at a lot of guides, and all say how easy it is to create a command and get an answer, but I can’t understand how to create dialogs between the user and the bot. In my webhook I can do for…
0
votes
1 answer

Telegram Bot Ask Question Without Button like BotFather

I'm trying to get answers from users without sending any button, but when I just send $reply_markup['force_reply'] = true; within the message, the reply is not coming with callback_query. How can I understand the user answering my question? Are…
0
votes
1 answer

Google script get json data from spread sheet

I am making a telegram bot by using google script app with google sheet. Now,I had linked the telegram update data to my google sheet by following the step on youtube tutorial,which means everytime someone send messages to the bot,my google script…
0
votes
1 answer

timeout in telegram.bot webhook - asp.net mvc

I had been developed a telegram bot using Telegram.Bot. I tried to rework with the bot, First I created bot using BotFather and got token. I set webhook server api address in telegram api. But when I check webhookinfo it returns this…
Sajjad.HS
  • 381
  • 2
  • 8
  • 19
0
votes
0 answers

Send a file to a Telegram Bot with Webhooks

I'm trying to send a file to a Telegram bot through a webhook. I will upload the file (a pdf document) using php and then send a request to the bot webhook to receive the file and do some processing to it. I'm using Advanced Rest Client (Desktop…
JCAguilera
  • 944
  • 1
  • 13
  • 32
0
votes
0 answers

Is it possible to write a bot that repeats all messages of a specific group member?

So that whenever my group member Bob writes a message, the bot immediatly copies it (echoing him)?
fortuneNext
  • 109
  • 1
  • 14
0
votes
1 answer

Can I extract and automatically message users on a TG group?

I’m part of a telegram group. I can see other users on the group, and I can message them individually (and manually). Is it possible to automatically (programmatically) message all the users on the group individually? Note I am not the admin. If it…
0
votes
1 answer

Is it possible for a telegram bot that is an “admin” of a channel to make a user of a channel an admin?

I have a telegram bot that asks a channel user a certain set of questions. Based on these answers, I would like that user to automatically become the admin of the telegram channel. Is that possible?
0
votes
0 answers

Why is the bot on Heroku Server not responding?

I programmed a simple bot that is connected to Google Sheets API. It asks a few questions to the user and stores it in the Sheet I have. When I use bot.polling it works fine, but I was trying the webhook so I could use Heroku to have my bot running…
0
votes
2 answers

How to use telegram webhook on google cloud functions?

I have set up a telegram bot using webhooks in python on google cloud functions. Based on some sample code from the internet I got it to work as a simple echo-bot however the structure is very different to the bots I coded before using long…
Fnguyen
  • 1,159
  • 10
  • 23