Telegram Bot Error - telegram.error.BadRequest: Button_data_invalid
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I'm trying to make a telegram bot with the telegram
and telegram.ext
libraries on Python. I try to pass callback_data
for a button as a parameter for inline keyboard, but when it comes to add the keyboard as reply_markup
, it sends the following error:
Traceback (most recent call last):
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramextdispatcher.py", line 279, in process_update
handler.handle_update(update, self)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramextcallbackqueryhandler.py", line 143, in handle_update
return self.callback(dispatcher.bot, update, **optional_args)
File ".__init__.py", line 121, in button
reply_markup=reply_markup
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegrambot.py", line 60, in decorator
result = func(self, *args, **kwargs)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegrambot.py", line 85, in decorator
result = self._request.post(url, data, timeout=kwargs.get('timeout'))
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramutilsrequest.py", line 273, in post
**urlopen_kwargs)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramutilsrequest.py", line 210, in _request_wrapper
raise BadRequest(message)
telegram.error.BadRequest: Button_data_invalid
The code is the following:
p1 = "%s(@%s)"%(query.from_user.first_name,query.from_user.username)
text = "<b>⚔Duel</b>nChallenger %s is ready!nWaiting for an opponent..."%p1
args = '{"next":"player2","p1":"%s","text":"%s"}'%(p1,text)
reply_markup = InlineKeyboardMarkup(kb.kb(op = "data",args = args))
bot.edit_message_text(
text=text,
inline_message_id=query.inline_message_id,
parse_mode=ParseMode.HTML,
reply_markup=reply_markup
)
Also, the code for the keyboard is:
class kb:
def kb(op = None, args = None):
if op == 'data':
keyboard = [[InlineKeyboardButton("Join", callback_data = args)]]
I don't really know where am I mistaken. It works well when instead of args
I assign static text to callback_data
What do you think it could be?
python-3.x telegram telegram-bot
add a comment |
I'm trying to make a telegram bot with the telegram
and telegram.ext
libraries on Python. I try to pass callback_data
for a button as a parameter for inline keyboard, but when it comes to add the keyboard as reply_markup
, it sends the following error:
Traceback (most recent call last):
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramextdispatcher.py", line 279, in process_update
handler.handle_update(update, self)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramextcallbackqueryhandler.py", line 143, in handle_update
return self.callback(dispatcher.bot, update, **optional_args)
File ".__init__.py", line 121, in button
reply_markup=reply_markup
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegrambot.py", line 60, in decorator
result = func(self, *args, **kwargs)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegrambot.py", line 85, in decorator
result = self._request.post(url, data, timeout=kwargs.get('timeout'))
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramutilsrequest.py", line 273, in post
**urlopen_kwargs)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramutilsrequest.py", line 210, in _request_wrapper
raise BadRequest(message)
telegram.error.BadRequest: Button_data_invalid
The code is the following:
p1 = "%s(@%s)"%(query.from_user.first_name,query.from_user.username)
text = "<b>⚔Duel</b>nChallenger %s is ready!nWaiting for an opponent..."%p1
args = '{"next":"player2","p1":"%s","text":"%s"}'%(p1,text)
reply_markup = InlineKeyboardMarkup(kb.kb(op = "data",args = args))
bot.edit_message_text(
text=text,
inline_message_id=query.inline_message_id,
parse_mode=ParseMode.HTML,
reply_markup=reply_markup
)
Also, the code for the keyboard is:
class kb:
def kb(op = None, args = None):
if op == 'data':
keyboard = [[InlineKeyboardButton("Join", callback_data = args)]]
I don't really know where am I mistaken. It works well when instead of args
I assign static text to callback_data
What do you think it could be?
python-3.x telegram telegram-bot
what data are you sending as args? what type of an object is that? (you may need use type('') to check its type)
– tashakori
Nov 23 '18 at 5:23
@tashakori I'm sending the args always as string type, and always between 'simple quotes' trying to avoid problems with it
– Mickey Rodriguez
Nov 28 '18 at 16:18
add a comment |
I'm trying to make a telegram bot with the telegram
and telegram.ext
libraries on Python. I try to pass callback_data
for a button as a parameter for inline keyboard, but when it comes to add the keyboard as reply_markup
, it sends the following error:
Traceback (most recent call last):
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramextdispatcher.py", line 279, in process_update
handler.handle_update(update, self)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramextcallbackqueryhandler.py", line 143, in handle_update
return self.callback(dispatcher.bot, update, **optional_args)
File ".__init__.py", line 121, in button
reply_markup=reply_markup
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegrambot.py", line 60, in decorator
result = func(self, *args, **kwargs)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegrambot.py", line 85, in decorator
result = self._request.post(url, data, timeout=kwargs.get('timeout'))
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramutilsrequest.py", line 273, in post
**urlopen_kwargs)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramutilsrequest.py", line 210, in _request_wrapper
raise BadRequest(message)
telegram.error.BadRequest: Button_data_invalid
The code is the following:
p1 = "%s(@%s)"%(query.from_user.first_name,query.from_user.username)
text = "<b>⚔Duel</b>nChallenger %s is ready!nWaiting for an opponent..."%p1
args = '{"next":"player2","p1":"%s","text":"%s"}'%(p1,text)
reply_markup = InlineKeyboardMarkup(kb.kb(op = "data",args = args))
bot.edit_message_text(
text=text,
inline_message_id=query.inline_message_id,
parse_mode=ParseMode.HTML,
reply_markup=reply_markup
)
Also, the code for the keyboard is:
class kb:
def kb(op = None, args = None):
if op == 'data':
keyboard = [[InlineKeyboardButton("Join", callback_data = args)]]
I don't really know where am I mistaken. It works well when instead of args
I assign static text to callback_data
What do you think it could be?
python-3.x telegram telegram-bot
I'm trying to make a telegram bot with the telegram
and telegram.ext
libraries on Python. I try to pass callback_data
for a button as a parameter for inline keyboard, but when it comes to add the keyboard as reply_markup
, it sends the following error:
Traceback (most recent call last):
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramextdispatcher.py", line 279, in process_update
handler.handle_update(update, self)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramextcallbackqueryhandler.py", line 143, in handle_update
return self.callback(dispatcher.bot, update, **optional_args)
File ".__init__.py", line 121, in button
reply_markup=reply_markup
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegrambot.py", line 60, in decorator
result = func(self, *args, **kwargs)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegrambot.py", line 85, in decorator
result = self._request.post(url, data, timeout=kwargs.get('timeout'))
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramutilsrequest.py", line 273, in post
**urlopen_kwargs)
File "C:UsersmickeAppDataLocalProgramsPythonPython36-32libsite-packagestelegramutilsrequest.py", line 210, in _request_wrapper
raise BadRequest(message)
telegram.error.BadRequest: Button_data_invalid
The code is the following:
p1 = "%s(@%s)"%(query.from_user.first_name,query.from_user.username)
text = "<b>⚔Duel</b>nChallenger %s is ready!nWaiting for an opponent..."%p1
args = '{"next":"player2","p1":"%s","text":"%s"}'%(p1,text)
reply_markup = InlineKeyboardMarkup(kb.kb(op = "data",args = args))
bot.edit_message_text(
text=text,
inline_message_id=query.inline_message_id,
parse_mode=ParseMode.HTML,
reply_markup=reply_markup
)
Also, the code for the keyboard is:
class kb:
def kb(op = None, args = None):
if op == 'data':
keyboard = [[InlineKeyboardButton("Join", callback_data = args)]]
I don't really know where am I mistaken. It works well when instead of args
I assign static text to callback_data
What do you think it could be?
python-3.x telegram telegram-bot
python-3.x telegram telegram-bot
asked Nov 23 '18 at 4:28
Mickey RodriguezMickey Rodriguez
1
1
what data are you sending as args? what type of an object is that? (you may need use type('') to check its type)
– tashakori
Nov 23 '18 at 5:23
@tashakori I'm sending the args always as string type, and always between 'simple quotes' trying to avoid problems with it
– Mickey Rodriguez
Nov 28 '18 at 16:18
add a comment |
what data are you sending as args? what type of an object is that? (you may need use type('') to check its type)
– tashakori
Nov 23 '18 at 5:23
@tashakori I'm sending the args always as string type, and always between 'simple quotes' trying to avoid problems with it
– Mickey Rodriguez
Nov 28 '18 at 16:18
what data are you sending as args? what type of an object is that? (you may need use type('') to check its type)
– tashakori
Nov 23 '18 at 5:23
what data are you sending as args? what type of an object is that? (you may need use type('') to check its type)
– tashakori
Nov 23 '18 at 5:23
@tashakori I'm sending the args always as string type, and always between 'simple quotes' trying to avoid problems with it
– Mickey Rodriguez
Nov 28 '18 at 16:18
@tashakori I'm sending the args always as string type, and always between 'simple quotes' trying to avoid problems with it
– Mickey Rodriguez
Nov 28 '18 at 16:18
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440654%2ftelegram-bot-error-telegram-error-badrequest-button-data-invalid%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440654%2ftelegram-bot-error-telegram-error-badrequest-button-data-invalid%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
what data are you sending as args? what type of an object is that? (you may need use type('') to check its type)
– tashakori
Nov 23 '18 at 5:23
@tashakori I'm sending the args always as string type, and always between 'simple quotes' trying to avoid problems with it
– Mickey Rodriguez
Nov 28 '18 at 16:18