How can I send a inline link button? #10
-
|
I have a photo conversion bot, and I want to send a link to the user after the photo conversion is done. |
Beta Was this translation helpful? Give feedback.
Answered by
kian-ahmadian
Jan 21, 2023
Replies: 1 comment
-
|
Hi @erfan-s, Yes it's possible.
...
async def on_message(message):
await message.reply(..., components = bale.Components(inline_keyboards = [[bale.InlineKeyboard(text = "Link", url = "https://github.com/python-bale-bot")]] ))You can also read this in the project document. Enjoy! 🤗 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
codaliza
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @erfan-s, Yes it's possible.
You can also read this in the project document.
Enjoy! 🤗