python telegrambot store chat id – Telegram API
I am wondering how I could store/read out a user chat ID to later send them messages. Example would be, that the user is adding my telegram bot and sends him a message. Later on in my program at some…
I am wondering how I could store/read out a user chat ID to later send them messages. Example would be, that the user is adding my telegram bot and sends him a message. Later on in my program at some…
How do I create a menu like the one at the left-hand side bottom of the Telegram bot? Any pointers would be very much appreciated.
I found the following curl example to use a telegram bot to message a user. But that is written in PHP. Is there an example of how to use the curl command in windows 10 command prompt to send a…
So i have this python code that figures out channel chat id to send message for multiple channels in a given list. I only have the channel invite link I still didn't figure out how can i get the channel…
I was wondering if there is a possible way to get messages from the telegram channel knowing that I logged in to this account and I am the admin of this channel so I just want the get messages. import…
I choose heroku for use my simple python script that gets telegram messages and parses them. So when i start the script on heroku it asked for telegram number and confirmation code, but i cant to enter them because i…
I am making a telegram-bot in NodeJS. This is a code snippet I am having an issue with: let counter = 0 bot.onText(/flexbox (.+)/i, async (msg, match) => { console.log(msg) console.log(match) const chatId = msg.chat.id; bot.sendMessage(msg.from.id, 'Original Text', { reply_markup:…
So i made a script that just scrapes for all hyperlinks on linkedin. i dont want anything else. this is what i did. import re import requests import logging from telegram.ext import * from bs4 import BeautifulSoup from datetime import…
How do I make my Google App Script wait for an answer in telegram bot and run my if statement afterwards? My idea of the code is: When I type /survey, it will run the following code which will post…
I haven't found ANYTHING about this online. I've read the documentation but understandably absolutely failed to understand it. I also haven't found anything about (custom) commands in it directly. I know that you can add a /start command for example…