如何在 telebot(pytelegramBotAPI) 中获取 chat_id 和 message_id 以更新电报 bot(Python) 中最后发送的消息
how to get chat_id and message_id in telebot(pytelegramBotAPI) to update last sent message in telegram bot(Python)
这是我的一段代码
bot.edit_message_text(chat_id = CHAT_ID, message_id = MESSAGE_ID, text = "message has been updated", reply_markup=inline_keyboard)
我想你可以通过以下方式获得它:
lastMessageId = message[-1].message_id
lastChatId = message[-1].chat.id
我不知道你为什么需要它,但我发送了一个例子让你了解如何使用消息 ID 和用户 ID。
您应该创建一个键盘:
keyboard = types.InlineKeyboardMarkup()
keyboard.add(types.InlineKeyboardButton('Yes', callback_data='yes'),
types.InlineKeyboardButton('No', callback_data='no'))
创建命令:
@bot.message_handler(commands=['like'])
def like(message):
cid = message.chat.id
bot.send_message(cid, "Do you like it?", reply_markup=keyboard)
创建回调:
@bot.callback_query_handler(func=lambda call: call.data in ['yes', 'no'])
def callback_handler(call):
cid = call.message.chat.id
mid = call.message.message_id
answer = call.data
update_lang(cid, answer)
try:
bot.edit_message_text("You voted: " + answer, cid, mid, reply_markup=keyboard)
except:
pass
这是我的一段代码
bot.edit_message_text(chat_id = CHAT_ID, message_id = MESSAGE_ID, text = "message has been updated", reply_markup=inline_keyboard)
我想你可以通过以下方式获得它:
lastMessageId = message[-1].message_id
lastChatId = message[-1].chat.id
我不知道你为什么需要它,但我发送了一个例子让你了解如何使用消息 ID 和用户 ID。
您应该创建一个键盘:
keyboard = types.InlineKeyboardMarkup()
keyboard.add(types.InlineKeyboardButton('Yes', callback_data='yes'),
types.InlineKeyboardButton('No', callback_data='no'))
创建命令:
@bot.message_handler(commands=['like'])
def like(message):
cid = message.chat.id
bot.send_message(cid, "Do you like it?", reply_markup=keyboard)
创建回调:
@bot.callback_query_handler(func=lambda call: call.data in ['yes', 'no'])
def callback_handler(call):
cid = call.message.chat.id
mid = call.message.message_id
answer = call.data
update_lang(cid, answer)
try:
bot.edit_message_text("You voted: " + answer, cid, mid, reply_markup=keyboard)
except:
pass