skip to Main Content

chat_id Eror in python-telegram-bot – Telegram API

I want to make a keyboard in telegram-bot, but I can't find chat_id. How can fix it? Code: from telegram.ext import Updater, CommandHandler from telegram import ReplyKeyboardMarkup updater = Updater(Token) def start(update, _) : update.message.reply_text('Hi {}!'.format(update.message.chat.first_name)) def service_keyboards(bot,update) : chat_id…

VIEW QUESTION
Back To Top
Search