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
1 answer

Telegram Bot Webhook doesn't track channel post deletion

I need to synchronize telegram channel posts with my site. So, I created a bot, a channel, added my bot to this channel(with admin rights, it has access to messages) and binded my bot's webhook to the specified server url. Everything goes well, post…
0
votes
1 answer

Telegram API using curl in windows throws error of "message text is empty"

I'm running the following command and I get the below error saying text is empty. But its not. I also tried POST and it still does the same error. Any ideas? curl.exe -k…
Patoshi パトシ
  • 21,707
  • 5
  • 29
  • 47
0
votes
0 answers

Telegram webhook "Connection timeout"

Our Telegram bot [TOKEN_OMITTED] never 'hooks' with our server. This URL https://api.telegram.org/bot[TOKEN_OMITTED]/getWebhookInfo gives this response with 'Connection timeout'…
Norbert
  • 1
  • 1
0
votes
1 answer

Webhook activity always timeout when starting a runbook

I create one runbook and webhook in the automation account , then create one webhook activity in Data factory I want to stat the runbook through the webhook activity. I configure the URL link that created when creating webhook in the runbook and…
Alex Wang
  • 103
  • 1
  • 10
0
votes
1 answer

I can not be accessing to files of 'domains' directory in openserver with ngrok for setting webhook for telegram bot in windows

Before using windows I was Ubuntu User. When I used ngrok on ubuntu, It automatically accesses to /var/www/html directory, afetr this I can easily open php file which telegram bot codes to see result. Now on Windows, I am using openserver.…
Abdurakhmon
  • 63
  • 1
  • 10
0
votes
0 answers

telegram bot api pass empty inline_keyboard -> delete keyboard

I'd like to use the methode editMessageReplyMarkup to get rid of my inline_keyboard buttons. I can get rid of them by passing the 'reply_markup' a json encoded keyboard like that: $k = ['inline_keyboard' => [ …
0
votes
1 answer

Send messages to a specific member id from a Telegram group to Google Sheets

The bot is already as administrator of the group and sending to google sheets all messages that are sent. However, I don't want all members, I want only one specific member. Let's say his id is 123456789, how do I get the bot to only send messages…
0
votes
1 answer

Can a Telegram user answer on behalf of a Telegram Bot?

I would like to know if a Telegram user can answer on behalf of a Telegram Bot? For example in the banks, when you start chatting, the bot responds to you until you ask for customer service and there a customer representative takes control and…
vashzero
  • 180
  • 1
  • 5
  • 19
0
votes
1 answer

My telegram bot answers in personal chats but don't in group chats. Why?

My telegram bot answers in personal chats but don't in group chats. I could not find the problem. A snippet from my code: @app.route('/{}'.format(TOKEN), methods=['POST']) def respond(): # retrieve the message in JSON and then transform it to…
0
votes
1 answer

Want to filter more then 10 million numbers on Telegram

I need a little help. I have more then 10 millions number and i want to filter those contacts on telegram like which number exist on telegram or not. I have search a lot but not get any method which fulfil my needs. I have checked IsphoneRegistered…
0
votes
1 answer

How to auto send messages from a Telegram Group to my server?

My need is to send ALL messages from a telgram Group to my PHP server. I suppose that I have to use a bot and attach it to my Telegram group. My question is : how to set this bot to send all messages that group members post on my PHP server? I…
0
votes
1 answer

Connecting Telegraf to a Local Bot API Server?

Can anyone please tell me how to change the server used by telegraf from "https://api.telegram.org/" to my server? I have already the server successfully and it works properly but do not know how to connect it to telegraf. I mean this…
0
votes
0 answers

Integrate telegram bot with AWS Cogntio?

The main idea is to register a user in Cognito User Pool (I'm thinking about how to implement a sign-up process inside the Telegram app), that in the future he could sign in throw the web? I already know about contact object, so, I would prefer to…
0
votes
2 answers

Deploy telegram with webhook

I'm more than a day look how to deploy telegram bot with webhook instead of polling.. even in the official doc it's not work for me https://github.com/python-telegram-bot/python-telegram-bot/wiki/Webhooks someone can explain me oh give me some link…
0
votes
1 answer

PHP Longman telegram bot. Can't download files via webhooks

I'm using longman/telegram-bot package at my Yii2 project. class GenericmessageCommand extends SystemCommand { /** * @var string */ protected $name = 'genericmessage'; /** * @var string */ protected $description…