Replies: 1 comment
-
You cannot send any buttons for inline queriy answers. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
markup = types.InlineKeyboardMarkup()
markup.add(types.InlineKeyboardButton("🌐testButton", url="http://www.google.com"))
r = types.InlineQueryResultArticle('1', 'query',
types.InputTextMessageContent(msg,parse_mode="Markdown",reply_markup=markup))
bot.answer_inline_query(query.id, [r])
。。。reply_markup
How should I send it? The current code is wrong
Beta Was this translation helpful? Give feedback.
All reactions