Telegram机器人。 想要在调用命令/ start @ BotName时将机器人添加到组中如何与机器人@TrueMafiaBot配合使用 我该怎么做?
答案 0 :(得分:0)
您可以使用以下链接并将其发送给用户:
t.me/@BotUsername?startgroup=botstart
用您的漫游器用户名替换@BotUsername
,当用户单击链接时,其客户端将提示您选择应将漫游器添加到的组。
答案 1 :(得分:0)
我将机器人添加到按按钮分组的最终代码
@bot.message_handler(commands=['start', 'help'])
def start_message(message):
keyboard = types.InlineKeyboardMarkup() # Keyboard
key_add_to_group = types.InlineKeyboardButton(text='Add to group', url='http://t.me/evil_cards_bot?startgroup=test')
keyboard.add(key_add_to_group) # Add button to keyboard
response_text = 'Add bot to group.'
bot.send_message(message.chat.id, text=response_text, reply_markup=keyboard)