Post

Inline Keyboards Bot

بات اینلاین کیبوردها

به این بات یک پیام بدهید تا یک پیام دارای دکمه به شما بفرستد
سپس روی دکمه ها کلیک کنید

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from balethon import Client
from balethon.conditions import private
from balethon.objects import InlineKeyboard

bot = Client("TOKEN")


@bot.on_message(private)
async def answer_message(message):
    await message.reply(
        "Click a button!",
        InlineKeyboard(
            [("Button 1", "1")],
            [("Button 2", "2")]
        )
    )


@bot.on_callback_query()
async def answer_callback_query(callback_query):
    await callback_query.answer(
        f"Thank you for clicking on button {callback_query.data}"
    )


bot.run()


پست قبلی: Echo Bot

پست بعدی: Welcome Bot

This post is licensed under CC BY 4.0 by the author.